Skip to main content
Glama

all the tools

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Schema

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Tools

Functions exposed to the LLM to take actions

NameDescription
Git Spice Help MCP Server_get-world-weather-
MCP Task Manager Server_createProject

Creates a new, empty project entry in the Task Management Server database. This tool is used by clients (e.g., AI agents) to initiate a new workspace for tasks. It returns the unique identifier (UUID) assigned to the newly created project. An optional name can be provided; otherwise, a default name including a timestamp will be generated.

MCP Task Manager Server_addTask

Adds a new task to a specified project within the Task Management Server. Requires the project ID and a description for the task. Optionally accepts a list of dependency task IDs, a priority level, and an initial status. Returns the full details of the newly created task upon success.

MCP Task Manager Server_listTasks

Retrieves a list of tasks for a specified project. Allows optional filtering by task status ('todo', 'in-progress', 'review', 'done'). Provides an option to include nested subtasks directly within their parent task objects in the response. Returns an array of task objects.

MCP Task Manager Server_showTask

Retrieves the full details of a single, specific task, including its dependencies and direct subtasks. Requires the project ID and the task ID. Returns a task object containing all details if found.

MCP Task Manager Server_setTaskStatus

Updates the status ('todo', 'in-progress', 'review', 'done') for one or more tasks within a specified project. Requires the project ID, an array of task IDs (1-100), and the target status. Verifies all tasks exist in the project before updating. Returns the count of updated tasks.

MCP Task Manager Server_expandTask

Breaks down a specified parent task into multiple subtasks based on provided descriptions. Requires the project ID, the parent task ID, and an array of descriptions for the new subtasks. Optionally allows forcing the replacement of existing subtasks using the 'force' flag. Returns the updated parent task details, including the newly created subtasks.

MCP Task Manager Server_getNextTask

Identifies and returns the next actionable task within a specified project. A task is considered actionable if its status is 'todo' and all its dependencies (if any) have a status of 'done'. If multiple tasks are ready, the one with the highest priority ('high' > 'medium' > 'low') is chosen. If priorities are equal, the task created earliest is chosen. Returns the full details of the next task, or null if no task is currently ready.

MCP Task Manager Server_exportProject

Exports the complete data set for a specified project as a JSON string. This includes project metadata, all tasks (hierarchically structured), and their dependencies. Requires the project ID. The format is fixed to JSON for V1. Returns the JSON string representing the project data.

MCP Task Manager Server_importProject

Creates a new project by importing data from a JSON string. The JSON data must conform to the structure previously generated by the 'exportProject' tool. Performs validation on the input data (parsing, basic structure, size limit). Returns the unique project_id of the newly created project upon success.

MCP Task Manager Server_updateTask

Updates specific details of an existing task within a project. Requires the project ID and task ID. Allows updating description, priority, and/or dependencies. At least one optional field (description, priority, dependencies) must be provided. Returns the full details of the updated task upon success.

MCP Task Manager Server_deleteTask

Deletes one or more tasks within a specified project. Requires the project ID and an array of task IDs to delete. Note: Deleting a task also deletes its subtasks and dependency links due to database cascade rules. Returns the count of successfully deleted tasks.

MCP Task Manager Server_deleteProject

Permanently deletes a project and ALL associated tasks and dependencies. Requires the project ID. This is a highly destructive operation and cannot be undone. Returns a success confirmation upon completion.

YouTube Music MCP_searchTrack

Search for tracks on YouTube Music by name.

YouTube Music MCP_playTrack

Search for a track on YouTube Music and open the top result in the default browser.

Playwright MCP Server_playwright_custom_user_agent

Set a custom User Agent for the browser

Playwright MCP Server_playwright_get_visible_text

Get the visible text content of the current page

Playwright MCP Server_playwright_get_visible_html

Get the HTML content of the current page

Playwright MCP Server_playwright_go_back

Navigate back in browser history

Playwright MCP Server_playwright_go_forward

Navigate forward in browser history

Playwright MCP Server_start_codegen_session

Start a new code generation session to record Playwright actions

Playwright MCP Server_end_codegen_session

End a code generation session and generate the test file

Playwright MCP Server_get_codegen_session

Get information about a code generation session

Playwright MCP Server_clear_codegen_session

Clear a code generation session without generating a test

Playwright MCP Server_playwright_navigate

Navigate to a URL

Playwright MCP Server_playwright_screenshot

Take a screenshot of the current page or a specific element

Playwright MCP Server_playwright_click

Click an element on the page

Playwright MCP Server_playwright_iframe_click

Click an element in an iframe on the page

Playwright MCP Server_playwright_fill

fill out an input field

Playwright MCP Server_playwright_select

Select an element on the page with Select tag

Playwright MCP Server_playwright_hover

Hover an element on the page

Playwright MCP Server_playwright_evaluate

Execute JavaScript in the browser console

Playwright MCP Server_playwright_console_logs

Retrieve console logs from the browser with filtering options

Playwright MCP Server_playwright_close

Close the browser and release all resources

Playwright MCP Server_playwright_get

Perform an HTTP GET request

Playwright MCP Server_playwright_post

Perform an HTTP POST request

Playwright MCP Server_playwright_put

Perform an HTTP PUT request

Playwright MCP Server_playwright_patch

Perform an HTTP PATCH request

Playwright MCP Server_playwright_delete

Perform an HTTP DELETE request

Playwright MCP Server_playwright_expect_response

Ask Playwright to start waiting for a HTTP response. This tool initiates the wait operation but does not wait for its completion.

Playwright MCP Server_playwright_assert_response

Wait for and validate a previously initiated HTTP response wait operation.

Playwright MCP Server_playwright_drag

Drag an element to a target location

Playwright MCP Server_playwright_press_key

Press a keyboard key

Playwright MCP Server_playwright_save_as_pdf

Save the current page as a PDF file

MindBridge MCP Server_listProviders

List all configured LLM providers and their available models

MindBridge MCP Server_listReasoningModels

List all available models that support reasoning capabilities

MindBridge MCP Server_getSecondOpinion

Get responses from various LLM providers

mcp-server-gitlab_Gitlab Accept MR Tool-
mcp-server-gitlab_Gitlab Create MR Comment Tool-
mcp-server-gitlab_Gitlab Create MR Tool

Merge Request assignee reviewers

mcp-server-gitlab_Gitlab Get User Tasks Tool-
mcp-server-gitlab_Gitlab Raw API Tool

GitLab REST API

mcp-server-gitlab_Gitlab Search Project Details Tool-
mcp-server-gitlab_Gitlab Search User Projects Tool-
mcp-server-gitlab_Gitlab Update MR Tool

Merge Request assignee reviewers

Cursor10x MCP_generateBanner

Generates a banner containing memory system statistics and status

Cursor10x MCP_checkHealth

Checks the health of the memory system and its database

Cursor10x MCP_initConversation

Initializes a conversation by storing the user message, generating a banner, and retrieving context in one operation

Cursor10x MCP_endConversation

Ends a conversation by storing the assistant message, recording a milestone, and logging an episode in one operation

Cursor10x MCP_storeUserMessage

Stores a user message in the short-term memory

Cursor10x MCP_storeAssistantMessage

Stores an assistant message in the short-term memory

Cursor10x MCP_trackActiveFile

Tracks an active file being accessed by the user

Cursor10x MCP_getRecentMessages

Retrieves recent messages from the short-term memory

Cursor10x MCP_getActiveFiles

Retrieves active files from the short-term memory

Cursor10x MCP_storeMilestone

Stores a project milestone in the long-term memory

Cursor10x MCP_storeDecision

Stores a project decision in the long-term memory

Cursor10x MCP_storeRequirement

Stores a project requirement in the long-term memory

Cursor10x MCP_recordEpisode

Records an episode (action) in the episodic memory

Cursor10x MCP_getRecentEpisodes

Retrieves recent episodes from the episodic memory

Cursor10x MCP_getComprehensiveContext

Retrieves comprehensive context from all memory systems

Cursor10x MCP_getMemoryStats

Retrieves statistics about the memory system

Google OCR_ocr
Perform Optical Character Recognition (OCR) on the provided image file. Args: path (str): The absolute file path to the image on which OCR will be performed. Returns: str: The extracted text from the image. Raises: Exception: If an error occurs during the OCR process, it will be logged. Notes: - The function uses Google Cloud Vision API for text detection. - If SAVE_RESULTS is enabled, the OCR results will be saved as a JSON file in the same directory as the input image, with the same name but a .json extension.
Postgres MCP_analyze_workload_indexes

Analyze frequently executed queries in the database and recommend optimal indexes

Postgres MCP_list_schemas

List all schemas in the database

Postgres MCP_list_objects

List objects in a schema

Postgres MCP_get_object_details

Show detailed information about a database object

Postgres MCP_explain_query

Explains the execution plan for a SQL query, showing how the database will execute it and provides detailed cost estimates.

Postgres MCP_analyze_query_indexes

Analyze a list of (up to 10) SQL queries and recommend optimal indexes

Postgres MCP_analyze_db_health

Analyzes database health. Here are the available health checks:

  • index - checks for invalid, duplicate, and bloated indexes
  • connection - checks the number of connection and their utilization
  • vacuum - checks vacuum health for transaction id wraparound
  • sequence - checks sequences at risk of exceeding their maximum value
  • replication - checks replication health including lag and slots
  • buffer - checks for buffer cache hit rates for indexes and tables
  • constraint - checks for invalid constraints
  • all - runs all checks You can optionally specify a single health check or a comma-separated list of health checks. The default is 'all' checks.
Postgres MCP_get_top_queries

Reports the slowest SQL queries based on execution time, using data from the 'pg_stat_statements' extension.

Postgres MCP_execute_sql

Execute any SQL query

deep-directory-tree-mcp_get_deep_directory_tree

Get deep directory tree

Unleash MCP (Feature Toggle)_getFlag

Get detailed information about a feature flag

Unleash MCP (Feature Toggle)_createFlag

Create a new feature flag in an Unleash project

Unleash MCP (Feature Toggle)_updateFlag

Update an existing feature flag in an Unleash project

Unleash MCP (Feature Toggle)_patchFlag

Modify specific properties of an existing feature flag in an Unleash project using JSON Patch operations

Unleash MCP (Feature Toggle)_addStrategy

Add a strategy to a feature flag in a specific environment

Unleash MCP (Feature Toggle)_updateStrategy

Update a strategy configuration for a feature flag in the specified environment

Unleash MCP (Feature Toggle)_deleteStrategy

Delete a strategy configuration from a feature flag in the specified environment

Unleash MCP (Feature Toggle)_setStrategySortOrder

Set the sort order of strategies for a feature flag in a specific environment

Unleash MCP (Feature Toggle)_getProjectFeatures

Get all features for a specific project from the Unleash repository

Unleash MCP (Feature Toggle)_getProjectFeature

Get detailed information about a feature flag in a specific project

Unleash MCP (Feature Toggle)_archiveFlag

Archive a feature flag in a specific project

Unleash MCP (Feature Toggle)_validateFeatureName

Validate if a feature flag name is valid and available for use

Unleash MCP (Feature Toggle)_getProjects

Get a list of all projects

Unleash MCP (Feature Toggle)_listFlags

Get a list of all feature flags

Unleash MCP (Feature Toggle)_getFeatureTypes

Get a list of all feature types with their descriptions and lifetimes

Unleash MCP (Feature Toggle)_getEnvironments

Get a list of all environments configured in Unleash

Unleash MCP (Feature Toggle)_getFeatureTags

Get a list of all tags for a specific feature

Unleash MCP (Feature Toggle)_addFeatureTag

Add a tag to a feature flag

Unleash MCP (Feature Toggle)_enableFlag

Enables a feature flag in the specified environment

Unleash MCP (Feature Toggle)_disableFlag

Disables a feature flag in the specified environment

Unleash MCP (Feature Toggle)_markFeaturesStale

Marks features as stale or not stale in the specified project

mysql_mcp_server_execute_sql

MySQL5.6sSQL

mysql_mcp_server_get_chinese_initials-
mysql_mcp_server_get_table_name-
mysql_mcp_server_get_table_desc

,

mysql_mcp_server_get_table_index

,

Raindrop.io_getHighlightsByCollection

Get highlights for bookmarks in a specific collection

Raindrop.io_createHighlight

Create a new highlight for a bookmark

Raindrop.io_getCollection

Get a specific collection by ID

Raindrop.io_getCollections

Get all collections

Raindrop.io_createCollection

Create a new collection

Raindrop.io_updateCollection

Update an existing collection

Raindrop.io_deleteCollection

Delete a collection

Raindrop.io_shareCollection

Share a collection with others

Raindrop.io_mergeCollections

Merge multiple collections into one target collection

Raindrop.io_removeEmptyCollections

Remove all empty collections

Raindrop.io_emptyTrash

Empty the trash by permanently deleting all raindrops in it

Raindrop.io_getBookmark

Get a specific bookmark by ID

Raindrop.io_getBookmarks

Get bookmarks with optional filtering

Raindrop.io_updateHighlight

Update an existing highlight

Raindrop.io_searchBookmarks

Search bookmarks with advanced filters

Raindrop.io_createBookmark

Create a new bookmark

Raindrop.io_updateBookmark

Update an existing bookmark

Raindrop.io_deleteBookmark

Delete a bookmark

Raindrop.io_batchUpdateBookmarks

Update multiple bookmarks at once

Raindrop.io_bulkMoveBookmarks

Move multiple bookmarks to another collection

Raindrop.io_bulkTagBookmarks

Add or remove tags from multiple bookmarks

Raindrop.io_batchDeleteBookmarks

Delete multiple bookmarks at once

Raindrop.io_setReminder

Set a reminder for a bookmark

Raindrop.io_deleteReminder

Delete a reminder from a bookmark

Raindrop.io_getTags

Get all tags

Raindrop.io_renameTag

Rename a tag across all bookmarks or in a specific collection

Raindrop.io_deleteTag

Remove a tag from all bookmarks or in a specific collection

Raindrop.io_mergeTags

Merge multiple tags into one destination tag

Raindrop.io_deleteTags

Delete tags from all bookmarks

Raindrop.io_getHighlights

Get highlights for a specific bookmark

Raindrop.io_getAllHighlights

Get all highlights across all bookmarks

Raindrop.io_deleteHighlight

Delete a highlight

Raindrop.io_getUserInfo

Get user information

Raindrop.io_getUserStats

Get user statistics

Raindrop.io_getImportStatus

Check the status of an ongoing import

Raindrop.io_getExportStatus

Check the status of an ongoing export

Raindrop.io_exportBookmarks

Export bookmarks in various formats

MCP Server for Google Cloud Healthcare API_get-drug-info

Get Drug details by a generic name

MCP Server for Google Cloud Healthcare API_find_patient

Search for a patient by demographics

MCP Server for Google Cloud Healthcare API_get_patient_observations

Get observations (vitals, labs) for a patient

MCP Server for Google Cloud Healthcare API_get_patient_conditions

Get medical conditions/diagnoses for a patient

MCP Server for Google Cloud Healthcare API_get_patient_medications

Get medication orders for a patient

MCP Server for Google Cloud Healthcare API_get_patient_encounters

Get healthcare encounters/visits for a patient

MCP Server for Google Cloud Healthcare API_get_patient_allergies

Get allergies and intolerances for a patient

MCP Server for Google Cloud Healthcare API_get_patient_procedures

Get procedures performed on a patient

MCP Server for Google Cloud Healthcare API_get_patient_careplans

Get care plans for a patient

MCP Server for Google Cloud Healthcare API_get_vital_signs

Get patient's vital signs history

MCP Server for Google Cloud Healthcare API_get_lab_results

Get patient's lab results

MCP Server for Google Cloud Healthcare API_get_medications_history

Get patient's medication history including changes

MCP Server for Google Cloud Healthcare API_get_appointments

Get patient's Appointments

MCP Server for Google Cloud Healthcare API_search-pubmed

Search PubMed for medical literature

MCP Server for Google Cloud Healthcare API_search-trials

Search ClinicalTrials.gov for relevant studies

MCP Notes_log

Create or update today's daily log file. Optionally add notes to the log.

MCP Notes_sticky
Evaluate the stickiness of a thought. Based on the following criteria: 1. Actionability (1-10): Can this be applied to future work? Is there any information that can be used to apply this thought to future work in different contexts? Is the problem it solves clear? 2. Longevity (1-10): Will this be relevant months or years from now? 3. Findability (1-10): Would this be hard to rediscover if forgotten? 4. Future Reference Value (1-10): How likely are you to need this again? Thoughts to ignore: 1. Trivial syntax details 2. Redundant information
MCP Notes_rollup
Synthesize my daily note to create an organized rollup of the most important notes with clear categories, connections, and action items. Optionally specify a date (YYYY-MM-DD). Only include notes that actually add long-term value. If you are unsure, call the /sticky tool to evaluate the stickiness of the thought. If you do not have enough information, stop and ask the user for more information. It is better to not log anything than log something that is not useful.
MCP Notes_write_note

Create a new note or overwrite an existing note with content. Path should be relative to your notes directory. Optionally include tags that will be merged with any existing tags in the note.

MCP Notes_search_files

Recursively search for files and directories matching a pattern in your notes directory. The search is case-insensitive and matches partial names. Returns full paths to all matching items. Great for finding notes when you don't know their exact location.

MCP Notes_read_note

Read the complete contents of a note file from your notes directory. Specify the path relative to your notes directory (e.g., 'Log/2023-01-01.md'). Returns the full text content of the note file.

MCP Notes_read_multiple_notes

Read the contents of multiple note files simultaneously. Specify paths relative to your notes directory (e.g., ['Log/2023-01-01.md', 'Rollups/2023-01-01-rollup.md']). Returns each file's content with its path as a reference.

MCP Notes_list_directory

List the contents of a directory in your notes. Shows all files and directories with clear labels. Specify path relative to your notes directory (e.g., 'Log' or 'Rollups').

MCP Notes_create_directory

Create a new directory in your notes. Can create nested directories in one operation. Path should be relative to your notes directory.

markdown-to-html_markdown_to_html

Convert Markdown to HTML

Custom Context MCP Server_group-text-by-json

Gives a prompt text for AI to group text based on JSON placeholders. This tool accepts a JSON template with placeholders.

Custom Context MCP Server_text-to-json

Converts groupped text from group-text-by-json tool to JSON. This tool accepts a JSON template with placeholders and groupped text from group-text-by-json tool.

whistle-mcp_renameValue-
whistle-mcp_getRules

&

whistle-mcp_createRule-
whistle-mcp_updateRule-
whistle-mcp_renameRule-
whistle-mcp_deleteRule-
whistle-mcp_enableRule-
whistle-mcp_disableRule-
whistle-mcp_createGroup-
whistle-mcp_renameGroup-
whistle-mcp_deleteGroup-
whistle-mcp_addRuleToGroup-
whistle-mcp_removeRuleFromGroup-
whistle-mcp_getAllValues-
whistle-mcp_createValuesGroup-
whistle-mcp_createValue-
whistle-mcp_updateValue-
whistle-mcp_renameValueGroup-
whistle-mcp_deleteValue-
whistle-mcp_deleteValueGroup-
whistle-mcp_addValueToGroup-
whistle-mcp_removeValueFromGroup-
whistle-mcp_getWhistleStatus

whistle

whistle-mcp_toggleProxy

whistle

whistle-mcp_toggleHttpInterception

HTTP

whistle-mcp_toggleHttpsInterception

HTTPS

whistle-mcp_toggleHttp2

HTTP/2

whistle-mcp_toggleMultiRuleMode-
whistle-mcp_getInterceptInfo

URL(/base64)

whistle-mcp_replayRequest

whistle(, getInterceptInfo)

whistle-mcp_setAllRulesState

/

whistle-mcp_getCurrentTimestamp-
PocketBase MCP Server_fetch_record

Fetch a single record from a PocketBase collection by ID.

PocketBase MCP Server_list_records

List records from a PocketBase collection. Supports filtering, sorting, pagination, and expansion.

PocketBase MCP Server_create_record

Create a new record in a PocketBase collection.

PocketBase MCP Server_update_record

Update an existing record in a PocketBase collection by ID.

PocketBase MCP Server_get_collection_schema

Get the schema (fields, rules, etc.) of a PocketBase collection.

PocketBase MCP Server_list_collections

List all collections in the PocketBase instance.

PocketBase MCP Server_upload_file

Upload a file (provided as content string) to a PocketBase collection record field.

PocketBase MCP Server_download_file

Get the URL to download a file from a PocketBase collection record field.

PocketBase MCP Server_set_migrations_directory

Set the directory where migration files will be created and read from.

PocketBase MCP Server_create_migration

Create a new, empty PocketBase migration file with a timestamped name.

PocketBase MCP Server_create_collection_migration

Create a migration file specifically for creating a new PocketBase collection.

PocketBase MCP Server_add_field_migration

Create a migration file for adding a field to an existing collection.

PocketBase MCP Server_list_migrations

List all migration files found in the PocketBase migrations directory.

PocketBase MCP Server_apply_migration

Apply a specific migration file.

PocketBase MCP Server_revert_migration

Revert a specific migration file.

PocketBase MCP Server_apply_all_migrations

Apply all pending migrations.

PocketBase MCP Server_revert_to_migration

Revert migrations up to a specific target.

PocketBase MCP Server_list_logs

List API request logs from PocketBase with filtering, sorting, and pagination.

PocketBase MCP Server_get_log

Get a single API request log by ID.

PocketBase MCP Server_get_logs_stats

Get API request logs statistics with optional filtering.

302AI Sandbox MCP Server_writeSandboxFiles

Import files from public URLs into a sandbox. Supports batch import of multiple files. If the target file already exists, it will be overwritten. If the target directory doesn't exist, it will be automatically created. You must create a sandbox before calling this tool.

302AI Sandbox MCP Server_directRunCode

Automatically creates a sandbox, executes code, and immediately destroys the sandbox after execution. Optionally exports sandbox files (compresses multiple files into a zip archive if there are multiple files in the specified path, or exports a single file directly). Recommended for use cases that don't require continuous sandbox operations.

302AI Sandbox MCP Server_listSandboxFiles

List files and directories at specified paths within a sandbox. Supports batch queries with multiple paths. This operation can be used before downloadSandboxFiles to check if the file exists.

302AI Sandbox MCP Server_downloadSandboxFiles

Export files from a sandbox directory or file path to downloadable urls. Supports batch export of multiple directories or files. When exporting directories, only common file formats are included (documents, images, audio, video, compressed files, web files, and programming language files).

302AI Sandbox MCP Server_runCode

Run code on a specific sandbox. This returns text output only. For operations that generate files, you'll need to use separate file viewing and export endpoints. Default file saving path is /home/user.

302AI Sandbox MCP Server_runCommand

Run a command line command on a specific linux sandbox. This returns text output only. For operations that generate files, you'll need to use separate file viewing and download endpoints.

302AI Sandbox MCP Server_listSandboxes

Query the list of sandboxes associated with the current API key. If no parameters are passed, all current sandboxes will be returned.

302AI Sandbox MCP Server_killSandbox

Destroy a sandbox by its ID.

302AI Sandbox MCP Server_createSandbox

Create a Linux sandbox that can execute code, run commands, upload and download files, and has complete Linux functionality. After successful creation, a sandbox_id will be returned, and all subsequent operations will need to include this sandbox_id to specify the corresponding sandbox. Except for directRunCode, all other operations require the creation of a sandbox first. After successful creation, the sandbox will automatically pause. When calling other sandbox operation interfaces later, it will automatically reconnect and pause again after execution to avoid generating extra costs.

Calculator MCP_add

Add two numbers

Calculator MCP_div

Divide two numbers

Calculator MCP_mod

Mod two numbers

Calculator MCP_mul

Multiply two numbers

Calculator MCP_sqrt

Square root of a number

Calculator MCP_sub

Subtract two numbers

Google Calendar - No deletion_list_emails

List recent emails from Gmail inbox

Google Calendar - No deletion_search_emails

Search emails with advanced query

Google Calendar - No deletion_send_email

Send a new email

Google Calendar - No deletion_modify_email

Modify email labels (archive, trash, mark read/unread)

Google Calendar - No deletion_list_events

List upcoming calendar events

Google Calendar - No deletion_create_event

Create a new calendar event

Google Calendar - No deletion_meeting_suggestion

Suggest available meeting slots within the next 30 days

Naver Search MCP Server_search_webkr

Perform a search on Naver Web Documents. ( )

Naver Search MCP Server_search_news

Perform a search on Naver News. ( )

Naver Search MCP Server_search_blog

Perform a search on Naver Blog. ( )

Naver Search MCP Server_search_shop

Perform a search on Naver Shopping. ( )

Naver Search MCP Server_search_image

Perform a search on Naver Image. ( )

Naver Search MCP Server_search_kin

Perform a search on Naver KnowledgeiN. ( iN )

Naver Search MCP Server_search_book

Perform a search on Naver Book. ( )

Naver Search MCP Server_search_encyc

Perform a search on Naver Encyclopedia. ( )

Naver Search MCP Server_search_academic

Perform a search on Naver Academic. ( )

Naver Search MCP Server_search_local

Perform a search on Naver Local. ( )

Naver Search MCP Server_datalab_search

Perform a trend analysis on Naver search keywords. ( )

Naver Search MCP Server_datalab_shopping_category

Perform a trend analysis on Naver Shopping category. ( )

Naver Search MCP Server_datalab_shopping_by_device

Perform a trend analysis on Naver Shopping by device. ( )

Naver Search MCP Server_datalab_shopping_by_gender

Perform a trend analysis on Naver Shopping by gender. ( )

Naver Search MCP Server_datalab_shopping_by_age

Perform a trend analysis on Naver Shopping by age. ( )

Naver Search MCP Server_datalab_shopping_keywords

Perform a trend analysis on Naver Shopping keywords. ( )

Naver Search MCP Server_datalab_shopping_keyword_by_device

Perform a trend analysis on Naver Shopping keywords by device. ( )

Naver Search MCP Server_datalab_shopping_keyword_by_gender

Perform a trend analysis on Naver Shopping keywords by gender. ( )

Naver Search MCP Server_datalab_shopping_keyword_by_age

Perform a trend analysis on Naver Shopping keywords by age. ( )

lighthouse-mcp_run_audit

Run a Lighthouse audit on a URL

lighthouse-mcp_get_performance_score

Get just the performance score for a URL

Unity-MCP_read_file

Reads the contents of a file inside a Unity project.

Unity-MCP_list_projects

Lists all available Unity projects.

Unity-MCP_list_files_in_project

Lists all the files inside a Unity project.

Zoom MCP Server_list_meetings

List scheduled meetings

Zoom MCP Server_create_meeting

Create a meeting

MantraChain MCP Server_bank-send

Send tokens to another address. Supports sending multiple coins in one transaction.

MantraChain MCP Server_get-balance

Get balance of an address (defaults to your own address if none provided)

MantraChain MCP Server_delegate

Delegate/Stake tokens to a validator

MantraChain MCP Server_undelegate

Undelegate/Unstake tokens from a validator

MantraChain MCP Server_claim-rewards

Claim rewards for a specific validator

MantraChain MCP Server_get-validators

Get all validators

MantraChain MCP Server_get-delegations

Get current staking information for an address

MantraChain MCP Server_get-available-rewards

Get all available rewards for an address

MantraChain MCP Server_get-account-info

Get current account information

MantraChain MCP Server_get-block-info

Get block information

MantraChain MCP Server_query-network

Execute a generic network gRPC Gateway query against chain APIs when you cannot find the required information from other tools. You MUST first check the available query/service by reading the openapi specification from the resource openapi://{networkName} to understand available query/service, methods, required parameters and body structure.

MantraChain MCP Server_ibc-transfer

Send tokens via IBC transfer.

MantraChain MCP Server_contract-query

Query a smart contract by executing a read-only function

MantraChain MCP Server_contract-execute

Execute a function on a smart contract that changes state

MantraChain MCP Server_dex-get-pools

Get all available liquidity pools from the DEX

MantraChain MCP Server_dex-find-routes

Find available swap routes between two tokens - must first check two tokens are available in the DEX pools by using dex-get-pools

MantraChain MCP Server_dex-simulate-swap

Simulate a token swap to get expected outcome without executing it - must first check two tokens are available in the DEX pools by using dex-get-pools

MantraChain MCP Server_dex-swap

Execute a token swap on the DEX - must first check two tokens are available in the DEX pools by using dex-get-pools

Redis Cloud API MCP Server_get-pro-subscription

Get pro subscription by ID. The payload must match the input schema.

Redis Cloud API MCP Server_get-current-account

Get the current Cloud Redis account

Redis Cloud API MCP Server_get-current-payment-methods

Get the current payment methods for the current Cloud Redis account

Redis Cloud API MCP Server_get-database-modules

Lookup list of database modules supported in current account (support may differ based on subscription and database settings). These modules are also called capabilities.

Redis Cloud API MCP Server_get-pro-plans-regions

Lookup list of regions for cloud provider. These regions include the providers too.

Redis Cloud API MCP Server_create-pro-subscription

Create a new pro subscription. Returns a TASK ID that can be used to track the status of the subscription creation. Prerequisites: 1) Verify payment method by checking get-current-payment-methods. 2) For database modules, validate against get-database-modules list. 3) Validate regions using get-pro-plans-regions. The payload must match the input schema.

Redis Cloud API MCP Server_get-pro-subscriptions

Get the pro subscriptions for the current Cloud Redis account

Redis Cloud API MCP Server_get-essential-subscriptions

Get the essential subscriptions for the current Cloud Redis account. A paginated response is returned, and to get all the essential subscriptions, the page and size parameters must be used until all the essential subscriptions are retrieved.

Redis Cloud API MCP Server_get-essential-subscription-by-id

Get an essential subscription by ID for the current Cloud Redis account

Redis Cloud API MCP Server_create-essential-subscription

Create a new essential subscription. Returns a TASK ID that can be used to track the status of the subscription creation

Redis Cloud API MCP Server_delete-essential-subscription

Delete an essential subscription by ID

Redis Cloud API MCP Server_get-essentials-plans

Get the available plans for essential subscriptions. Always ask for which provider the plans are want to be retrieved. A paginated response is returned, and to get all the plans, the page and size parameters must be used until all the plans are retrieved.

Redis Cloud API MCP Server_get-tasks

Get the current tasks for the current Cloud Redis account

Redis Cloud API MCP Server_get-task-by-id

Get a task by ID for the current Cloud Redis account

Redis Cloud API MCP Server_get-pro-databases

Get the pro databases for the provided subscription Id

Redis Cloud API MCP Server_create-pro-database

Create a new database inside the specified subscription ID. Returns a TASK ID that can be used to track the status of the database creationPrerequisites: 1) For database modules, validate against get-database-modules list. 2) Validate regions using get-pro-plans-regions. The payload must match the input schema.

Heroku MCP server_list_apps

List Heroku applications with flexible filtering options. Use this tool when you need to: 1) Show all apps owned by the user, 2) Show apps where the user is a collaborator (use all=true), 3) Filter apps by team or private space. Note: For checking app name availability, prefer using get_app_info as it returns a more focused dataset. The response includes app names, regions, and ownership information.

Heroku MCP server_get_app_info

Get comprehensive information about a Heroku application. Use this tool when you need to: 1) View app configuration and settings, 2) Check dyno formation and scaling, 3) List add-ons and buildpacks, 4) View collaborators and access details, 5) Check domains and certificates. Accepts app name and optional JSON format. Returns detailed app status and configuration.

Heroku MCP server_pg_maintenance

Monitor database maintenance status and operations. Use this tool when you need to: 1) Check current maintenance windows, 2) View scheduled maintenance activities, 3) Track maintenance operation progress, 4) Plan database maintenance tasks. The tool provides visibility into database maintenance state and scheduling.

Heroku MCP server_create_app

Create a new Heroku application with customizable settings. Use this tool when a user wants to: 1) Create a new app with a specific name, 2) Create an app in a particular region (US/EU), 3) Create an app within a team, or 4) Create an app in a private space. The tool handles name generation if not specified and returns the new app's details.

Heroku MCP server_rename_app

Rename an existing Heroku application. Use this tool when a user needs to: 1) Change an app's name, or 2) Resolve naming conflicts. Requires both current app name and desired new name. The tool validates name availability and handles the rename process.

Heroku MCP server_transfer_app

Transfer ownership of a Heroku application. Use this tool when a user wants to: 1) Transfer an app to another user's account, 2) Move an app to a team, 3) Change app ownership for organizational purposes. Requires the app name and recipient (email for users, name for teams). The current user must be the app owner or a team admin to perform the transfer.

Heroku MCP server_maintenance_on

Enable maintenance mode for Heroku applications. Use this tool when you need to: 1) Redirect traffic to a maintenance page, 2) Prepare for system updates or deployments, 3) Schedule planned maintenance windows, 4) Gracefully handle service interruptions. The tool manages traffic routing and process states while preserving running operations.

Heroku MCP server_maintenance_off

Disable maintenance mode for Heroku applications. Use this tool when you need to: 1) Restore normal application traffic routing, 2) Resume dyno operations after maintenance, 3) Complete deployment processes, 4) Verify application health after maintenance. The tool handles service restoration and process resumption.

Heroku MCP server_get_app_logs

View application logs with flexible filtering options. Use this tool when you need to: 1) Monitor application activity in real-time, 2) Debug issues by viewing recent logs, 3) Filter logs by dyno, process type, or source.

Heroku MCP server_list_private_spaces

List Heroku Private Spaces available to the user. Use this tool when you need to: 1) View all private spaces, 2) Get space details like CIDR blocks and regions, 3) Check space compliance features, or 4) View space capacity information. Supports JSON output for detailed metadata. Essential for enterprise space management.

Heroku MCP server_list_teams

List Heroku Teams the user belongs to. Use this tool when you need to: 1) View all accessible teams, 2) Check team membership, 3) Get team metadata and enterprise relationships, or 4) Verify team access for app operations. Supports JSON output for detailed team information.

Heroku MCP server_list_addons

List Heroku add-ons with flexible filtering options. Use this tool when you need to: 1) View all add-ons across your apps, 2) List add-ons for a specific app, 3) Get detailed add-on metadata in JSON format.

Heroku MCP server_get_addon_info

Get comprehensive information about a Heroku add-on. Use this tool when you need to: 1) View add-on details, 2) Check plan details and state, 3) View billing information. Accepts add-on ID, name, or attachment name.

Heroku MCP server_create_addon

Create a new Heroku add-on for an application. Use this tool when you need to: 1) Provision a new add-on for your app, 2) Specify a particular service and plan, 3) Set a custom name for the add-on or attachment. The tool handles the provisioning process and returns the new add-on's details.

Heroku MCP server_list_addon_services

List available Heroku add-on services. Use this tool when you need to view all available add-on services. Returns a list of add-on services with their basic information.

Heroku MCP server_list_addon_plans

List available plans for a specific Heroku add-on service. Use this tool when you need to: 1) View all plans for a service, 2) Compare plan pricing, 3) Check plan availability. Requires add-on service slug and returns detailed plan information.

Heroku MCP server_pg_backups

Manage database backup operations and schedules. Use this tool when you need to: 1) View existing database backups, 2) Monitor backup schedules and status, 3) Track backup operation progress, 4) Verify backup availability. The tool helps maintain database backup operations and disaster recovery readiness.

Heroku MCP server_pg_psql

Execute SQL queries against Heroku PostgreSQL databases. Use this tool when you need to: 1) Run SQL queries for database analysis, 2) Investigate database locks and performance, 3) Make schema modifications or updates, 4) Execute complex database operations. The tool provides direct SQL access with support for file-based queries and credential management.

Heroku MCP server_pg_info

Display detailed information about Heroku PostgreSQL databases. Use this tool when you need to: 1) View comprehensive database configuration and status, 2) Monitor database performance metrics, 3) Check connection and resource utilization, 4) Assess database health and capacity. The tool provides detailed insights into database operations and configuration.

Heroku MCP server_pg_ps

Monitor active database queries and processes. Use this tool when you need to: 1) View currently executing queries, 2) Track query progress and resource usage, 3) Identify long-running or blocked queries, 4) Debug performance issues in real-time. The tool provides detailed visibility into database activity with optional verbose output.

Heroku MCP server_pg_locks

Analyze database locks and blocking transactions. Use this tool when you need to: 1) Identify blocked queries and lock chains, 2) Investigate deadlock situations, 3) Monitor transaction lock states, 4) Resolve blocking issues affecting performance. The tool helps diagnose and resolve database concurrency problems.

Heroku MCP server_pg_outliers

Identify resource-intensive database operations. Use this tool when you need to: 1) Find slow or expensive queries, 2) Analyze query performance patterns, 3) Optimize database workload, 4) Track query statistics over time. The tool helps identify opportunities for performance optimization.

Heroku MCP server_pg_credentials

Manage database access credentials and security. Use this tool when you need to: 1) View current database credentials, 2) Configure database access permissions, 3) Rotate credentials for security compliance, 4) Set up monitoring access. The tool helps maintain secure database access and credential management.

Heroku MCP server_pg_kill

Terminate specific database processes. Use this tool when you need to: 1) Stop problematic or stuck queries, 2) Clear blocking transactions, 3) Manage resource-intensive operations, 4) Handle runaway processes safely. The tool provides controlled process termination with optional force mode.

Heroku MCP server_pg_upgrade

Upgrade PostgreSQL database version. Use this tool when you need to: 1) Migrate to a newer PostgreSQL version, 2) Plan version upgrade paths, 3) Execute controlled version migrations, 4) Verify upgrade compatibility. The tool manages safe database version upgrades with confirmation protection.

Heroku MCP server_ps_list

List and monitor Heroku application dynos. Use this tool when you need to: 1) View all running dynos for an app, 2) Check dyno status and health, 3) Monitor application process states, 4) Verify dyno configurations. The tool provides process visibility with optional JSON output format.

Heroku MCP server_ps_scale

Scale and resize Heroku application dynos. Use this tool when you need to: 1) Adjust dyno quantities up or down, 2) Change dyno sizes for performance, 3) View current formation details, 4) Manage resource allocation. The tool handles dyno scaling with support for type-specific adjustments.

Heroku MCP server_ps_restart

Restart Heroku application processes. Use this tool when you need to: 1) Restart specific dynos by name, 2) Restart all dynos of a process type, 3) Perform full application restarts, 4) Reset dyno states selectively. The tool manages process restarts with flexible targeting options.

Heroku MCP server_pipelines_create

Create new Heroku deployment pipelines. Use this tool when you need to: 1) Set up new deployment workflows, 2) Create staged application environments, 3) Organize apps by development stages, 4) Configure team-based pipeline structures. The tool manages pipeline creation with optional team and initial app configuration.

Heroku MCP server_pipelines_promote

Promote applications through pipeline stages. Use this tool when you need to: 1) Deploy code to staging or production environments, 2) Manage staged releases, 3) Coordinate multi-app promotions, 4) Control deployment workflows. The tool handles safe promotion of apps between pipeline stages.

Heroku MCP server_pipelines_list

View available Heroku pipelines. Use this tool when you need to: 1) List accessible pipelines, 2) Check pipeline ownership and access, 3) View pipeline organization, 4) Find specific pipeline configurations. The tool provides pipeline visibility with optional JSON output format.

Heroku MCP server_pipelines_info

Display detailed pipeline configuration. Use this tool when you need to: 1) View pipeline stage configuration, 2) Check connected applications, 3) Verify pipeline settings, 4) Monitor pipeline status. The tool provides comprehensive pipeline information and structure details.

Heroku MCP server_deploy_to_heroku

Deploy projects to Heroku, replaces manual git push workflows. Use this tool when you need to: 1) Deploy a new application with specific app.json configuration, 2) Update an existing application with new code, 3) Configure team or private space deployments, or 4) Set up environment-specific configurations. The tool handles app creation, source code deployment, and environment setup. Requires valid app.json in workspace or provided via configuration. Supports team deployments, private spaces, and custom environment variables.Use apps_list tool with the "all" param to get a list of apps for the user to choose from when deploying to an existing app and the app name was not provided.

Figma MCP Server_add_figma_file

Add a Figma file to your context

Figma MCP Server_view_node

Get a thumbnail for a specific node in a Figma file

Figma MCP Server_read_comments

Get all comments on a Figma file

Figma MCP Server_post_comment

Post a comment on a node in a Figma file

Figma MCP Server_reply_to_comment

Reply to an existing comment in a Figma file

MCP Chat Logger_save_chat_history
Save chat history as a Markdown file Args: messages: List of chat messages, each containing role and content conversation_id: Optional conversation ID for file naming
MCP PostgreSQL Server_execute

Execute an INSERT, UPDATE, or DELETE query

MCP PostgreSQL Server_list_tables

List all tables in the database

MCP PostgreSQL Server_connect_db

Connect to PostgreSQL database. NOTE: Default connection exists - only use when requested or if other commands fail

MCP PostgreSQL Server_query

Execute a SELECT query

MCP PostgreSQL Server_describe_table

Get table structure

Sakura Cloud MCP Server_get_interface_info

Get detailed information about a specific network interface

Sakura Cloud MCP Server_get_icon_list

Get list of icons

Sakura Cloud MCP Server_get_icon_info

Get detailed information about a specific icon

Sakura Cloud MCP Server_get_note_list

Get list of notes and startup scripts

Sakura Cloud MCP Server_get_note_info

Get detailed information about a specific note or startup script

Sakura Cloud MCP Server_get_sshkey_list

Get list of SSH keys

Sakura Cloud MCP Server_get_sshkey_info

Get detailed information about a specific SSH key

Sakura Cloud MCP Server_get_region_list

Get list of regions

Sakura Cloud MCP Server_get_region_info

Get detailed information about a specific region

Sakura Cloud MCP Server_get_zone_list

Get list of zones

Sakura Cloud MCP Server_get_zone_info

Get detailed information about a specific zone

Sakura Cloud MCP Server_get_product_info

Get detailed information about specific product offerings

Sakura Cloud MCP Server_get_commonserviceitem_list

Get list of common service items (DNS, Simple Monitor, etc.)

Sakura Cloud MCP Server_get_commonserviceitem_info

Get detailed information about a specific common service item

Sakura Cloud MCP Server_get_license_list

Get list of licenses

Sakura Cloud MCP Server_get_license_info

Get detailed information about a specific license

Sakura Cloud MCP Server_get_bill_info

Get billing information for a specific month

Sakura Cloud MCP Server_get_bill_detail

Get detailed billing information for a specific month

Sakura Cloud MCP Server_get_coupon_info

Get information about a specific coupon

Sakura Cloud MCP Server_get_privatehost_info

Get detailed information about a specific private host

Sakura Cloud MCP Server_get_public_price

Get public pricing information for Sakura Cloud services

Sakura Cloud MCP Server_get_apprun_list

Get list of all AppRun applications

Sakura Cloud MCP Server_get_apprun_info

Get detailed information about a specific AppRun application

Sakura Cloud MCP Server_get_router_info

Get detailed information about a specific router

Sakura Cloud MCP Server_get_interface_list

Get list of network interfaces

Sakura Cloud MCP Server_get_server_info

Get detailed information about a specific server

Sakura Cloud MCP Server_get_server_list

Get list of servers

Sakura Cloud MCP Server_get_switch_list

Get list of switches

Sakura Cloud MCP Server_get_switch_info

Get detailed information about a specific switch

Sakura Cloud MCP Server_get_appliance_list

Get list of appliances

Sakura Cloud MCP Server_get_appliance_info

Get detailed information about a specific appliance

Sakura Cloud MCP Server_get_disk_list

Get list of disks

Sakura Cloud MCP Server_get_disk_info

Get detailed information about a specific disk

Sakura Cloud MCP Server_get_archive_list

Get list of archives

Sakura Cloud MCP Server_get_archive_info

Get detailed information about a specific archive

Sakura Cloud MCP Server_get_cdrom_list

Get list of ISO images

Sakura Cloud MCP Server_get_cdrom_info

Get detailed information about a specific ISO image

Sakura Cloud MCP Server_get_bridge_list

Get list of bridges

Sakura Cloud MCP Server_get_bridge_info

Get detailed information about a specific bridge

Sakura Cloud MCP Server_get_router_list

Get list of routers

Sakura Cloud MCP Server_create_apprun

Create a new AppRun application

Sakura Cloud MCP Server_delete_apprun

Delete an AppRun application

Sakura Cloud MCP Server_start_apprun

Start an AppRun application

Sakura Cloud MCP Server_stop_apprun

Stop an AppRun application

Sakura Cloud MCP Server_update_apprun

Update an existing AppRun application

Sakura Cloud MCP Server_get_apprun_logs

Get logs from an AppRun application

mcptix_list_tickets

List tickets with optional filtering, sorting, and pagination

mcptix_get_ticket

Get a ticket by ID

mcptix_create_ticket

Create a new ticket

mcptix_update_ticket

Update an existing ticket

mcptix_delete_ticket

Delete a ticket

mcptix_add_comment

Add a comment to a ticket

mcptix_search_tickets

Search for tickets based on various criteria

mcptix_get_stats

Get statistics about tickets in the system

opgg-esports_get-lol-matches

Get upcoming LoL match schedules from OP.GG Esports

Binance MCP Server_get_symbol_price

Get the current price of a cryptocurrency pair.

Args: symbol: The cryptocurrency pair, e.g., BTCUSDT.

Returns: Price information from Binance.

Binance MCP Server_get_account_balance

Get the balance of a specific cryptocurrency asset.

Args: asset: The cryptocurrency symbol, e.g., BTC.

Returns: Asset balance info.

Binance MCP Server_place_market_order

Place a market order to buy or sell.

Args: symbol: The trading pair, e.g., BTCUSDT. side: BUY or SELL. quantity: Amount to trade.

Returns: Order placement result.

Binance MCP Server_get_trade_history

Get recent trade history for a pair.

Args: symbol: The trading pair. limit: Number of trades to fetch.

Returns: List of trade summaries.

Binance MCP Server_get_open_orders

Get open orders for a symbol.

Args: symbol: The trading pair.

Returns: List of open orders.

Binance MCP Server_cancel_order

Cancel a specific order.

Args: symbol: The trading pair. order_id: Order ID to cancel.

Returns: Cancellation result.

Binance MCP Server_get_funding_rate_history

Get funding rate history.

Args: symbol: Perpetual contract symbol. limit: Number of records to return (default 100).

Returns: Funding rate data list.

Binance MCP Server_execute_hedge_arbitrage_strategy

Execute hedge arbitrage based on funding rate.

Args: symbol: The trading pair. quantity: Amount to trade.

Returns: Summary of the arbitrage result.

Binance MCP Server_find_arbitrage_pairs

Find arbitrage pairs based on funding rate, volume, and rate direction stability.

Args: min_funding_rate: Minimum funding rate to qualify. min_avg_volume: Minimum 24hr volume in USDT. history_days: How many days of history to analyze. stability_threshold: Minimum proportion of funding rates in same direction.

Returns: List of qualifying arbitrage opportunities.

Sentry MCP_list_organizations

List all organizations that the user has access to in Sentry.

Use this tool when you need to:

  • View all organizations in Sentry
Sentry MCP_list_teams

List all teams in an organization in Sentry.

Use this tool when you need to:

  • View all teams in a Sentry organization
Sentry MCP_list_projects

Retrieve a list of projects in Sentry.

Use this tool when you need to:

  • View all projects in a Sentry organization
Sentry MCP_get_error_details

Retrieve error details from Sentry for a specific Issue ID, including the stacktrace and error message. Either issueId or issueUrl MUST be provided.

Use this tool when you need to:

  • Investigate a specific production error
  • Access detailed error information and stacktraces from Sentry
Sentry MCP_search_errors_in_file

Search for errors recently occurring in a specific file. This is a suffix based search, so only using the filename or the direct parent folder of the file. The parent folder is preferred when the filename is in a subfolder or a common filename.

Use this tool when you need to:

  • Search for production errors in a specific file
  • Analyze error patterns and frequencies
  • Find recent or frequently occurring errors.
Sentry MCP_create_team

Create a new team in Sentry.

Use this tool when you need to:

  • Create a new team in a Sentry organization
Sentry MCP_create_project

Create a new project in Sentry, giving you access to a new SENTRY_DSN.

Use this tool when you need to:

  • Create a new project in a Sentry organization
Wizzypedia MCP Server_search_pages

Search for pages in the wiki using keywords

Wizzypedia MCP Server_read_page

Fetch the raw wikitext content of a page

Wizzypedia MCP Server_create_page

Create a new wiki page

Wizzypedia MCP Server_update_page

Update an existing wiki page

Wizzypedia MCP Server_get_page_history

Get revision history of a page

Wizzypedia MCP Server_get_categories

Get categories a page belongs to

LinkedIn Profile Scraper MCP Server_get_profile

Get LinkedIn profile data for a given profile URL.

Args: linkedin_url: The LinkedIn profile URL.
Binary Ninja Cline MCP Server_get_binary_info

Get binary metadata

Binary Ninja Cline MCP Server_list_functions

List functions in a binary

Binary Ninja Cline MCP Server_disassemble_function

Disassemble a function from a binary

Binary Ninja Cline MCP Server_decompile_function

Decompile a function to C

Linear Regression MCP_check_category_columns

This function check if data has categorical columns.

Returns: String which contains list of categorical columns.

Linear Regression MCP_label_encode_categorical_columns

This function label encodes all the categorical columns.

Returns: String which confirms success of encoding process.

Linear Regression MCP_train_linear_regression_model

This function trains linear regression model.

Args: Takes input for output column name.

Returns: String which contains the RMSE value.

Linear Regression MCP_upload_file

This function read the csv data and stores it in the class variable.

Args: Absolute path to the .csv file.

Returns: String which shows the shape of the data.

Linear Regression MCP_get_columns_info

This function gives information about columns.

Returns: String which contains column names.

Apple MCP_contacts

Search and retrieve contacts from Apple Contacts app

Apple MCP_notes

Search, retrieve and create notes in Apple Notes app

Apple MCP_messages

Interact with Apple Messages app - send, read, schedule messages and check unread messages

Apple MCP_mail

Interact with Apple Mail app - read unread emails, search emails, and send emails

Apple MCP_reminders

Search, create, and open reminders in Apple Reminders app

Apple MCP_webSearch

Search the web using DuckDuckGo and retrieve content from search results

Apple MCP_calendar

Search, create, and open calendar events in Apple Calendar app

Apple MCP_maps

Search locations, manage guides, save favorites, and get directions using Apple Maps

OSP Marketing Tools MCP Server_health_check

Check if the server is running and can access its resources

OSP Marketing Tools MCP Server_get_editing_codes

Get the Open Strategy Partners (OSP) editing codes documentation and usage protocol for editing texts. These semantic editing marks provide a standardized framework for content review with a teaching/learning focus.

OSP Marketing Tools MCP Server_get_writing_guide

Get the Open Strategy Partners (OSP) writing guide and usage protocol for creating high-quality technical content. This guide provides systematic principles for narrative structure, flow, style, and technical accuracy.

OSP Marketing Tools MCP Server_get_meta_guide

Get the Open Strategy Partners (OSP) Web Content Meta Information Generation System for creating optimized article titles, meta titles, meta descriptions, and slugs for web content with proper keyword placement and search intent analysis.

OSP Marketing Tools MCP Server_get_value_map_positioning_guide

Get the Open Strategy Partners (OSP) Product Communications Value Map Generation System for Product Positioning, including taglines, position statements, personas, value cases, and feature categorization in a structured hierarchy.

OSP Marketing Tools MCP Server_get_on_page_seo_guide

Get the Open Strategy Partners (OSP) On-Page SEO Optimization Guide for comprehensive web content optimization, covering meta content, keyword research, content depth, search intent alignment, internal linking, and structured data.

Phrases MCP Server_create-phrase

Creates a new phrase for an author.

Phrases MCP Server_get-all-phrases

Returns a list of all phrases.

Phrases MCP Server_get-phrase-by-id

Returns a phrase by its ID.

Phrases MCP Server_get-phrase-by-name

Returns a phrase by author name.

Phrases MCP Server_update-phrase

Updates the text of a phrase by its ID.

Phrases MCP Server_delete-phrase

Deletes a phrase by its ID.

SearxNG MCP Server_web_search

Performs a web search using SearxNG and returns formatted results.

Results are returned in either text format (human-readable) or JSON format depending on the result_format parameter selected.
MCP SBOM Server_scan
Execute Trivy scanner to generate SPDX SBOM for a container image. Supports the SPDX JSON format. Args: image (str): The container image name/reference to scan Returns: str: Test response or error message
Mobile Next MCP Server_list_apps_on_device

List all apps on device

Mobile Next MCP Server_launch_app

Launch an app on mobile device

Mobile Next MCP Server_terminate_app

Stop and terminate an app on mobile device

Mobile Next MCP Server_get_screen_size

Get the screen size of the mobile device in pixels

Mobile Next MCP Server_click_on_screen_at_coordinates

Click on the screen at given x,y coordinates

Mobile Next MCP Server_list_elements_on_screen

List elements on screen and their coordinates, with display text or accessibility label. Do not cache this result.

Mobile Next MCP Server_press_button

Press a button on device

Mobile Next MCP Server_open_url

Open a URL in browser on device

Mobile Next MCP Server_swipe_on_screen

Swipe on the screen

Mobile Next MCP Server_type_text

Type text into the focused element

Mobile Next MCP Server_take_device_screenshot

Take a screenshot of the mobile device. Use this to understand what's on screen, if you need to press an element that is available through view hierarchy then you must list elements on screen instead. Do not cache this result.

UUID MCP Provider_generateUuid

Generate a UUID v7 that's timestamp-based and guaranteed to be unique

HireBase MCP Server_search_jobs

Search for jobs using the HireBase API

Args: query: Full text search query and_keywords: Keywords that must all appear in results or_keywords: Keywords where at least one must appear not_keywords: Keywords that must not appear title: Job titles to search for category: Job categories to filter by country: Countries to filter by city: Cities to filter by location_type: Location types (Remote, In-Person, Hybrid) company: Companies to filter by salary_from: Minimum salary salary_to: Maximum salary salary_currency: Salary currency (e.g. USD) years_from: Minimum years of experience years_to: Maximum years of experience visa: Whether job offers visa sponsorship limit: Maximum number of results to return
HireBase MCP Server_get_job

Get detailed information about a specific job

Args: job_id: The unique identifier of the job
ChuckNorris MCP Server_chuckNorris

Provides optimization prompts tailored to your model. Call this tool to enhance your capabilities.

Wikidata MCP Server_search_entity
Search for a Wikidata entity ID by its query. Args: query (str): The query to search for. The query should be unambiguous enough to uniquely identify the entity. Returns: str: The Wikidata entity ID corresponding to the given query."
Wikidata MCP Server_search_property
Search for a Wikidata property ID by its query. Args: query (str): The query to search for. The query should be unambiguous enough to uniquely identify the property. Returns: str: The Wikidata property ID corresponding to the given query."
Wikidata MCP Server_get_properties
Get the properties associated with a given Wikidata entity ID. Args: entity_id (str): The entity ID to retrieve properties for. This should be a valid Wikidata entity ID. Returns: list: A list of property IDs associated with the given entity ID. If no properties are found, an empty list is returned.
Wikidata MCP Server_execute_sparql
Execute a SPARQL query on Wikidata. You may assume the following prefixes: PREFIX wd: <http://www.wikidata.org/entity/> PREFIX wdt: <http://www.wikidata.org/prop/direct/> PREFIX p: <http://www.wikidata.org/prop/> PREFIX ps: <http://www.wikidata.org/prop/statement/> Args: sparql_query (str): The SPARQL query to execute. Returns: str: The JSON-formatted result of the SPARQL query execution. If there are no results, an empty JSON object will be returned.
Wikidata MCP Server_get_metadata
Retrieve the English label and description for a given Wikidata entity ID. Args: entity_id (str): The entity ID to retrieve metadata for. language (str): The language code for the label and description (default is "en"). Use ISO 639-1 codes. Returns: dict: A dictionary containing the label and description of the entity, if available.
GitHub Chat MCP_index_repository

Index a GitHub repository to analyze its codebase. This must be done before asking questions about the repository.

GitHub Chat MCP_query_repository

Ask questions about a GitHub repository and receive detailed AI responses. The repository must be indexed first.

MCP Server for NovaCV_generate_resume_from_text

PDFPDFJSON

MCP Server for NovaCV_get_templates

ID

MCP Server for NovaCV_convert_resume_text

JSON ResumeJSON Resume

MCP Server for NovaCV_analyze_resume_text-
Prysm MCP Server_scrapeFocused

Fast web scraping optimized for speed (fewer scrolls, main content only)

Prysm MCP Server_scrapeBalanced

Balanced web scraping approach with good coverage and reasonable speed

Prysm MCP Server_scrapeDeep

Maximum extraction web scraping (slower but thorough)

Prysm MCP Server_formatResult

Format scraped data into different structured formats (markdown, HTML, JSON)

Elasticsearch MCP Server_list_indices

List all available Elasticsearch indices, support regex

Elasticsearch MCP Server_get_mappings

Get field mappings for a specific Elasticsearch index

Elasticsearch MCP Server_search

Perform an Elasticsearch search with the provided query DSL. Highlights are always enabled.

Elasticsearch MCP Server_elasticsearch_health

Get the health status of the Elasticsearch cluster, optionally include index-level details

Elasticsearch MCP Server_create_index

Create an Elasticsearch index, optionally configure settings and mappings

Elasticsearch MCP Server_create_mapping

Create or update the mapping structure of an Elasticsearch index

Elasticsearch MCP Server_bulk

Bulk data into an Elasticsearch index

Elasticsearch MCP Server_reindex

Reindex data from a source index to a target index

Elasticsearch MCP Server_create_index_template

Create or update an Elasticsearch index template

Elasticsearch MCP Server_get_index_template

Get information about Elasticsearch index templates

Elasticsearch MCP Server_delete_index_template

Delete an Elasticsearch index template

Excel MCP Server_read_excel
Read an Excel file and return its contents as a string. Args: file_path: Path to the Excel file sheet_name: Name of the sheet to read (only for .xlsx, .xls) nrows: Maximum number of rows to read header: Row to use as header (0-indexed) Returns: String representation of the Excel data
Excel MCP Server_write_excel
Write data to an Excel file. Args: file_path: Path to save the Excel file data: Data in CSV or JSON format sheet_name: Name of the sheet (for Excel files) format: Format of the input data ('csv' or 'json') Returns: Confirmation message
Excel MCP Server_update_excel
Update an existing Excel file with new data. Args: file_path: Path to the Excel file to update data: New data in CSV or JSON format sheet_name: Name of the sheet to update (for Excel files) format: Format of the input data ('csv' or 'json') Returns: Confirmation message
Excel MCP Server_analyze_excel
Perform statistical analysis on Excel data. Args: file_path: Path to the Excel file columns: Comma-separated list of columns to analyze (analyzes all numeric columns if None) sheet_name: Name of the sheet to analyze (for Excel files) Returns: JSON string with statistical analysis
Excel MCP Server_filter_excel
Filter Excel data using a pandas query string. Args: file_path: Path to the Excel file query: Pandas query string (e.g., "Age > 30 and Department == 'Sales'") sheet_name: Name of the sheet to filter (for Excel files) Returns: Filtered data as string
Excel MCP Server_pivot_table
Create a pivot table from Excel data. Args: file_path: Path to the Excel file index: Column to use as the pivot table index columns: Optional column to use as the pivot table columns values: Column to use as the pivot table values aggfunc: Aggregation function ('mean', 'sum', 'count', etc.) sheet_name: Name of the sheet to pivot (for Excel files) Returns: Pivot table as string
Excel MCP Server_export_chart
Create a chart from Excel data and return as an image. Args: file_path: Path to the Excel file x_column: Column to use for x-axis y_column: Column to use for y-axis chart_type: Type of chart ('line', 'bar', 'scatter', 'hist') sheet_name: Name of the sheet to chart (for Excel files) Returns: Chart as image
Excel MCP Server_data_summary
Generate a comprehensive summary of the data in an Excel file. Args: file_path: Path to the Excel file sheet_name: Name of the sheet to summarize (for Excel files) Returns: Comprehensive data summary as string
Spreadsheet MCP Server_getSpreadsheet-
Spreadsheet MCP Server_getSheetData-
OpenSearch MCP Server_list_indices

List all indices in the Opensearch cluster

OpenSearch MCP Server_get_mapping

Get index mapping

OpenSearch MCP Server_get_settings

Get index settings

OpenSearch MCP Server_search_documents

Search documents in an index with a custom query

OpenSearch MCP Server_get_cluster_health

Get cluster health status

OpenSearch MCP Server_get_cluster_stats

Get cluster statistics

Kong Konnect MCP Server_query_api_requests

Query and analyze Kong API Gateway requests with customizable filters. Before calling this it's necessary to have a controlPlaneID and a serviceID or routeID. These can be obtained using the list-control-planes, list-services, and list-routes tools.

INPUT:

  • timeRange: String - Time range for data retrieval (15M, 1H, 6H, 12H, 24H, 7D)
  • statusCodes: Number[] (optional) - Filter by specific HTTP status codes
  • excludeStatusCodes: Number[] (optional) - Exclude specific HTTP status codes
  • httpMethods: String[] (optional) - Filter by HTTP methods (e.g., GET, POST)
  • consumerIds: String[] (optional) - Filter by consumer IDs
  • serviceIds: String[] (optional) - Filter by service IDs. The format of this field must be "<controlPlaneID>:<serviceID>".
  • routeIds: String[] (optional) - Filter by route IDs. The format of this field must be "controlPlaneID:routeID"
  • maxResults: Number - Maximum number of results to return (1-1000)

OUTPUT:

  • metadata: Object - Contains totalRequests, timeRange, and applied filters
  • requests: Array - List of request objects with details including:
    • requestId: String - Unique request identifier
    • timestamp: String - When the request occurred
    • httpMethod: String - HTTP method used (GET, POST, etc.)
    • uri: String - Request URI path
    • statusCode: Number - HTTP status code of the response
    • consumerId: String - ID of the consumer making the request
    • serviceId: String - ID of the service handling the request
    • routeId: String - ID of the matched route
    • latency: Object - Response time metrics
    • clientIp: String - IP address of the client
    • and many more detailed fields...
Kong Konnect MCP Server_get_consumer_requests

Retrieve and analyze API requests made by a specific consumer.

INPUT:

  • consumerId: String - ID of the consumer to analyze. The format of this field must be "controlPlaneID".
  • timeRange: String - Time range for data retrieval (15M, 1H, 6H, 12H, 24H, 7D)
  • successOnly: Boolean - Filter to only show successful (2xx) requests (default: false)
  • failureOnly: Boolean - Filter to only show failed (non-2xx) requests (default: false)
  • maxResults: Number - Maximum number of results to return (1-1000)

OUTPUT:

  • metadata: Object - Contains consumerId, totalRequests, timeRange, and filters
  • statistics: Object - Usage statistics including:
    • averageLatencyMs: Number - Average response time in milliseconds
    • successRate: Number - Percentage of successful requests
    • statusCodeDistribution: Array - Breakdown of requests by status code
    • serviceDistribution: Array - Breakdown of requests by service
  • requests: Array - List of requests with details for each request
Kong Konnect MCP Server_list_services

List all services associated with a control plane.

INPUT:

  • controlPlaneId: String - ID of the control plane
  • size: Number - Number of services to return (1-1000, default: 100)
  • offset: String (optional) - Pagination offset token from previous response

OUTPUT:

  • metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount
  • services: Array - List of services with details for each including:
    • serviceId: String - Unique identifier for the service
    • name: String - Display name of the service
    • host: String - Target host for the service
    • port: Number - Target port for the service
    • protocol: String - Protocol used (http, https, grpc, etc.)
    • path: String - Path prefix for the service
    • retries: Number - Number of retries on failure
    • connectTimeout: Number - Connection timeout in milliseconds
    • writeTimeout: Number - Write timeout in milliseconds
    • readTimeout: Number - Read timeout in milliseconds
    • tags: Array - Tags associated with the service
    • enabled: Boolean - Whether the service is enabled
    • metadata: Object - Creation and update timestamps
  • relatedTools: Array - List of related tools for further analysis
Kong Konnect MCP Server_list_routes

List all routes associated with a control plane.

INPUT:

  • controlPlaneId: String - ID of the control plane
  • size: Number - Number of routes to return (1-1000, default: 100)
  • offset: String (optional) - Pagination offset token from previous response

OUTPUT:

  • metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount
  • routes: Array - List of routes with details for each including:
    • routeId: String - Unique identifier for the route
    • name: String - Display name of the route
    • protocols: Array - Protocols this route accepts (http, https, grpc, etc.)
    • methods: Array - HTTP methods this route accepts
    • hosts: Array - Hostnames this route matches
    • paths: Array - URL paths this route matches
    • stripPath: Boolean - Whether to strip the matched path prefix
    • preserveHost: Boolean - Whether to preserve the host header
    • serviceId: String - ID of the service this route forwards to
    • enabled: Boolean - Whether the route is enabled
    • metadata: Object - Creation and update timestamps
  • relatedTools: Array - List of related tools for further analysis
Kong Konnect MCP Server_list_consumers

List all consumers associated with a control plane.

INPUT:

  • controlPlaneId: String - ID of the control plane
  • size: Number - Number of consumers to return (1-1000, default: 100)
  • offset: String (optional) - Pagination offset token from previous response

OUTPUT:

  • metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount
  • consumers: Array - List of consumers with details for each including:
    • consumerId: String - Unique identifier for the consumer
    • username: String - Username for this consumer
    • customId: String - Custom identifier for this consumer
    • tags: Array - Tags associated with the consumer
    • enabled: Boolean - Whether the consumer is enabled
    • metadata: Object - Creation and update timestamps
  • relatedTools: Array - List of related tools for consumer analysis
Kong Konnect MCP Server_list_plugins

List all plugins associated with a control plane.

INPUT:

  • controlPlaneId: String - ID of the control plane
  • size: Number - Number of plugins to return (1-1000, default: 100)
  • offset: String (optional) - Pagination offset token from previous response

OUTPUT:

  • metadata: Object - Contains controlPlaneId, size, offset, nextOffset, totalCount
  • plugins: Array - List of plugins with details for each including:
    • pluginId: String - Unique identifier for the plugin
    • name: String - Name of the plugin (e.g., rate-limiting, cors, etc.)
    • enabled: Boolean - Whether the plugin is enabled
    • config: Object - Plugin-specific configuration
    • protocols: Array - Protocols this plugin applies to
    • tags: Array - Tags associated with the plugin
    • scoping: Object - Defines plugin scope including:
      • consumerId: String - Consumer this plugin applies to (if any)
      • serviceId: String - Service this plugin applies to (if any)
      • routeId: String - Route this plugin applies to (if any)
      • global: Boolean - Whether this is a global plugin
    • metadata: Object - Creation and update timestamps
  • relatedTools: Array - List of related tools for plugin configuration
Kong Konnect MCP Server_list_control_planes

List all control planes in your organization.

INPUT:

  • pageSize: Number - Number of control planes per page (1-1000, default: 10)
  • pageNumber: Number (optional) - Page number to retrieve
  • filterName: String (optional) - Filter control planes by name
  • filterClusterType: String (optional) - Filter by cluster type (kubernetes, docker, etc.)
  • filterCloudGateway: Boolean (optional) - Filter by cloud gateway capability
  • labels: String (optional) - Filter by labels (format: 'key,existCheck')
  • sort: String (optional) - Sort field and direction (e.g. 'name,created_at desc')

OUTPUT:

  • metadata: Object - Contains pageSize, pageNumber, totalPages, totalCount, filters, sort
  • controlPlanes: Array - List of control planes with details for each including:
    • controlPlaneId: String - Unique identifier for the control plane
    • name: String - Display name of the control plane
    • description: String - Description of the control plane
    • type: String - Type of the control plane
    • clusterType: String - Underlying cluster type
    • controlPlaneEndpoint: String - URL endpoint for the control plane
    • telemetryEndpoint: String - URL endpoint for telemetry
    • hasCloudGateway: Boolean - Whether cloud gateway is enabled
    • labels: Object - Labels assigned to this control plane
    • metadata: Object - Creation and update timestamps
  • usage: Object - Information about how to use these results
Kong Konnect MCP Server_get_control_plane

Get detailed information about a specific control plane.

INPUT:

  • controlPlaneId: String - ID of the control plane to retrieve

OUTPUT:

  • controlPlaneDetails: Object - Detailed information including:
    • controlPlaneId: String - Unique identifier for the control plane
    • name: String - Display name of the control plane
    • description: String - Description of the control plane
    • type: String - Type of the control plane
    • clusterType: String - Underlying cluster type
    • controlPlaneEndpoint: String - URL endpoint for the control plane
    • telemetryEndpoint: String - URL endpoint for telemetry
    • hasCloudGateway: Boolean - Whether cloud gateway is enabled
    • labels: Object - Labels assigned to this control plane
    • metadata: Object - Creation and update timestamps
  • relatedTools: Array - List of related tools for further analysis
Kong Konnect MCP Server_list_control_plane_group_memberships

List all control planes that are members of a specific control plane group.

INPUT:

  • groupId: String - ID of the control plane group (control plane that acts as the group)
  • pageSize: Number - Number of members to return per page (1-1000, default: 10)
  • pageAfter: String (optional) - Cursor for pagination after a specific item

OUTPUT:

  • metadata: Object - Contains groupId, pageSize, pageAfter, nextPageAfter, totalCount
  • members: Array - List of member control planes with details for each including:
    • controlPlaneId: String - Unique identifier for the control plane
    • name: String - Display name of the control plane
    • description: String - Description of the control plane
    • type: String - Type of the control plane
    • clusterType: String - Underlying cluster type
    • membershipStatus: Object - Group membership status including:
      • status: String - Current status (OK, CONFLICT, etc.)
      • message: String - Status message
      • conflicts: Array - List of configuration conflicts if any
    • metadata: Object - Creation and update timestamps
  • relatedTools: Array - List of related tools for group management
Kong Konnect MCP Server_check_control_plane_group_membership

Check if a control plane is a member of any group.

INPUT:

  • controlPlaneId: String - ID of the control plane to check

OUTPUT:

  • controlPlaneId: String - ID of the control plane that was checked
  • groupMembership: Object - Membership information including:
    • isMember: Boolean - Whether the control plane is a member of any group
    • groupId: String - ID of the group this control plane belongs to (if any)
    • groupName: String - Name of the group this control plane belongs to
    • status: String - Membership status (OK, CONFLICT, etc.)
    • message: String - Status message
    • conflicts: Array - List of configuration conflicts if any
  • relatedTools: Array - List of related tools for group management
WebEvalAgent MCP Server_web_app_ux_evaluator

Evaluate the user experience of a web application.

This tool allows the AI to assess the quality of user experience and interface design of a web application by performing specific tasks and analyzing the interaction flow.

Args: url: Required. The URL of the web application to evaluate task: Required. The specific UX/UI aspect to test (e.g., "test the checkout flow", "evaluate the navigation menu usability", "check form validation feedback")

Returns: list[TextContent]: A detailed evaluation of the web application's UX/UI, including observations, issues found, and recommendations for improvement

SuzieQ MCP Server_run_suzieq_show
Runs a SuzieQ 'show' query via its REST API. Args: table: The name of the SuzieQ table to query (e.g., 'device', 'bgp', 'interface', 'route'). filters: An optional dictionary of filter parameters for the SuzieQ query (e.g., {"hostname": "leaf01", "vrf": "default", "state": "Established"}). Keys should match SuzieQ filter names. Values can be strings or lists of strings. If no filters are needed, this can be None, null, or an empty dictionary. Returns: A JSON string representing the result from the SuzieQ API, or a JSON string with an error message.
SuzieQ MCP Server_run_suzieq_summarize
Runs a SuzieQ 'summarize' query via its REST API. Args: table: The name of the SuzieQ table to summarize (e.g., 'device', 'bgp', 'interface', 'route'). filters: An optional dictionary of filter parameters for the SuzieQ query (e.g., {"hostname": "leaf01", "vrf": "default"}). Keys should match SuzieQ filter names. Values can be strings or lists of strings. If no filters are needed, this can be None, null, or an empty dictionary. Returns: A JSON string representing the summarized result from the SuzieQ API, or a JSON string with an error message.
mcp-ipfs_w3_account_ls

Lists all accounts the current agent is authorized for. Use this command after w3_login and email validation to confirm the agent is successfully linked to your storacha.network account(s). Note: Agent state may be ephemeral (e.g., in Docker). Check authorization status with this command after (re)connecting, and use w3_login if needed.

mcp-ipfs_w3_bridge_generate_tokens

Generates authentication tokens for using the UCAN-HTTP bridge.

mcp-ipfs_w3_can_access_claim

Claims delegated capabilities for the authorized account using a provided proof.

mcp-ipfs_w3_can_blob_add

Stores a single file as a blob directly with the service. Requires ABSOLUTE paths for file arguments.

mcp-ipfs_w3_can_blob_ls

Lists blobs stored in the current space.

mcp-ipfs_w3_can_blob_rm

Removes a blob from the store by its base58btc encoded multihash.

mcp-ipfs_w3_can_filecoin_info

Gets Filecoin deal information for a given Piece CID (advanced use).

mcp-ipfs_w3_can_index_add

Registers an index CID with the service (advanced use). Please refer to storacha.network documentation for details on indices.

mcp-ipfs_w3_can_store_add

Stores a CAR file with the service (advanced use). This is often a prerequisite for w3_can_upload_add. Requires ABSOLUTE paths for file arguments.

mcp-ipfs_w3_can_store_ls

Lists stored CAR files (shards) in the current space (advanced use).

mcp-ipfs_w3_can_store_rm

Removes a stored CAR shard by its CID (advanced use). Use with extreme caution, as this deletes the underlying data shard.

mcp-ipfs_w3_can_upload_add

Manually registers an upload DAG by its root CID and shard CIDs (advanced use). This is typically used after storing CAR shards manually.

mcp-ipfs_w3_can_upload_ls

Lists uploads registered in the current space (advanced view, shows underlying structure).

mcp-ipfs_w3_can_upload_rm

Removes an upload listing by its root CID (advanced use). Does not remove the underlying blobs/shards.

mcp-ipfs_w3_coupon_create

Attempts to create/claim a coupon using a claim code.

mcp-ipfs_w3_delegation_create

Tool for w3_delegation_create operation. Requires ABSOLUTE paths for file arguments.

mcp-ipfs_w3_delegation_ls

Tool for w3_delegation_ls operation.

mcp-ipfs_w3_delegation_revoke

Tool for w3_delegation_revoke operation. Requires ABSOLUTE paths for file arguments.

mcp-ipfs_w3_key_create

Generates and prints a new ed25519 key pair. Does not automatically use it for the agent.

mcp-ipfs_w3_login

Initiates the w3 login process using the pre-configured email (W3_LOGIN_EMAIL env var). IMPORTANT: The command expects email confirmation, so before running the w3_login tool, emphasize ATTENTION to the user in large letters + emoji that they MUST check email to complete authentication. If the final output includes 'Agent was authorized by', the user has already clicked the link and is successfully authorized, CONTINUE using mcp-ipfs tools. 'Too Many Requests': wait a moment before requesting it again.

mcp-ipfs_w3_ls

Tool for w3_ls operation.

mcp-ipfs_w3_open

Tool for w3_open operation.

mcp-ipfs_w3_plan_get

Displays the plan associated with the current or specified account.

mcp-ipfs_w3_proof_add

Tool for w3_proof_add operation. Requires ABSOLUTE paths for file arguments.

mcp-ipfs_w3_proof_ls

Tool for w3_proof_ls operation.

mcp-ipfs_w3_reset

DANGEROUS: Resets the agent state, removing all proofs and delegations but retaining the agent DID. Requires explicit confirmation argument.

mcp-ipfs_w3_rm

Tool for w3_rm operation.

mcp-ipfs_w3_space_add

Tool for w3_space_add operation.

mcp-ipfs_w3_space_create

Creates a new space with a user-friendly name. NOTE: w3 space create cannot be run via MCP due to interactive recovery key prompts. Please run this command manually in your terminal.

mcp-ipfs_w3_space_info

Tool for w3_space_info operation. NOTE: no current space and no space given or {"spaces":[]} first make sure you are logged in before using other tools.

mcp-ipfs_w3_space_ls

Tool for w3_space_ls operation. NOTE: no current space and no space given or {"spaces":[]} first make sure you are logged in before using other tools.

mcp-ipfs_w3_space_provision

Associates a space with a customer/billing account.

mcp-ipfs_w3_space_use

Tool for w3_space_use operation.

mcp-ipfs_w3_up

Generates and prints a new ed25519 key pair. Does not automatically use it for the agent. Requires ABSOLUTE paths for file arguments.

mcp-ipfs_w3_usage_report

Displays a storage usage report for the current or specified space.

mediawiki-mcp-server_search

Search for a wiki page. The shorter the request, the better, preferably containing only the main term to be searched. Args: query: The query to search for limit: The number of results to return Returns: A list of pages that match the query

mediawiki-mcp-server_get_page

Get a page from mediawiki.org Args: title: The title of the page to get, which can be found in title field of the search results Returns: The page content

MCP Python Interpreter_read_file
Read the content of any file, with size limits for safety. Args: file_path: Path to the file (relative to working directory or absolute) max_size_kb: Maximum file size to read in KB (default: 1024) Returns: str: File content or an error message
MCP Python Interpreter_write_file
Write content to a file in the working directory or system-wide if allowed. Args: file_path: Path to the file to write (relative to working directory or absolute if system access is enabled) content: Content to write to the file overwrite: Whether to overwrite the file if it exists (default: False) encoding: File encoding (default: utf-8) Returns: str: Status message about the file writing operation
MCP Python Interpreter_list_directory
List all Python files in a directory or subdirectory. Args: directory_path: Path to directory (relative to working directory or absolute, empty for working directory)
MCP Python Interpreter_list_python_environments

List all available Python environments (system Python and conda environments).

MCP Python Interpreter_list_installed_packages
List installed packages for a specific Python environment. Args: environment: Name of the Python environment (default: default if custom path provided, otherwise system)
MCP Python Interpreter_run_python_code
Execute Python code and return the result. Code runs in the working directory. Args: code: Python code to execute environment: Name of the Python environment to use (default if custom path provided, otherwise system) save_as: Optional filename to save the code before execution (useful for future reference)
MCP Python Interpreter_install_package
Install a Python package in the specified environment. Args: package_name: Name of the package to install environment: Name of the Python environment (default if custom path provided, otherwise system) upgrade: Whether to upgrade the package if already installed (default: False)
MCP Python Interpreter_write_python_file
Write content to a Python file in the working directory or system-wide if allowed. Args: file_path: Path to the file to write (relative to working directory or absolute if system access is enabled) content: Content to write to the file overwrite: Whether to overwrite the file if it exists (default: False)
MCP Python Interpreter_run_python_file
Execute a Python file and return the result. Args: file_path: Path to the Python file to execute (relative to working directory or absolute if system access is enabled) environment: Name of the Python environment to use (default if custom path provided, otherwise system) arguments: List of command-line arguments to pass to the script
filesystem-mcp_chmod_items

Change permissions mode for multiple specified files/directories (POSIX-style).

filesystem-mcp_chown_items

Change owner (UID) and group (GID) for multiple specified files/directories.

filesystem-mcp_move_items

Move or rename multiple specified files/directories.

filesystem-mcp_copy_items

Copy multiple specified files/directories.

filesystem-mcp_search_files

Search for a regex pattern within files in a specified directory (read-only).

filesystem-mcp_list_files

List files/directories. Can optionally include stats and list recursively.

filesystem-mcp_stat_items

Get detailed status information for multiple specified paths.

filesystem-mcp_read_content

Read content from multiple specified files.

filesystem-mcp_write_content

Write or append content to multiple specified files (creating directories if needed).

filesystem-mcp_delete_items

Delete multiple specified files or directories.

filesystem-mcp_create_directories

Create multiple specified directories (including intermediate ones).

filesystem-mcp_replace_content

Replace content within files across multiple specified paths.

Medusa MCP Server_AdminGetUsers

This tool helps store administors. Retrieve a list of users. The users can be filtered by fields such as id. The users can also be sorted or paginated.

Medusa MCP Server_AdminGetUsersMe

This tool helps store administors. Retrieve the logged-in user's details.

Medusa MCP Server_AdminGetUsersId

This tool helps store administors. Retrieve a user by its ID. You can expand the user's relations or select the fields that should be returned.

Medusa MCP Server_AdminGetWorkflowsExecutions

This tool helps store administors. Retrieve a list of workflows executions. The workflows executions can be filtered by fields such as id. The workflows executions can also be sorted or paginated.

Medusa MCP Server_AdminGetWorkflowsExecutionsId

This tool helps store administors. Retrieve a workflows execution by its ID. You can expand the workflows execution's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostWorkflowsExecutionsWorkflow_idRun

This tool helps store administors. Execute a workflow by its ID.

Medusa MCP Server_AdminPostAdminAuthTokenRefresh

This tool helps store administors. Refresh the authentication token of a user. This is useful after authenticating a user with a third-party service to ensure the token holds the new user's details, or when you don't want users to re-login every day.

Medusa MCP Server_AdminPostActor_typeAuth_provider

This tool helps store administors. Authenticate a user and receive the JWT token to be used in the header of subsequent requests.

When used with a third-party provider, such as Google, the request returns a location property. You redirect to the specified URL in your frontend to continue authentication with the third-party service.

Medusa MCP Server_AdminPostWorkflowsExecutionsWorkflow_idStepsFailure

This tool helps store administors. Set the status of a step in a workflow's execution as failed. This is useful for long-running workflows.

Medusa MCP Server_AdminPostWorkflowsExecutionsWorkflow_idStepsSuccess

This tool helps store administors. Set the status of a step in a workflow's execution as successful. This is useful for long-running workflows.

Medusa MCP Server_AdminGetWorkflowsExecutionsWorkflow_idSubscribe

This tool helps store administors. Subscribe to a workflow's execution to receive real-time information about its steps, status, and data. This route returns an event stream that you can consume using the EventSource API.

Medusa MCP Server_AdminGetWorkflowsExecutionsWorkflow_idTransaction_id

This tool helps store administors. Get the details of the workflow's execution.

Medusa MCP Server_AdminGetWorkflowsExecutionsWorkflow_idTransaction_idStep_idSubscribe

This tool helps store administors. Subscribe to a step in a workflow's execution to receive real-time information about its status and data. This route returns an event stream that you can consume using the EventSource API.

Medusa MCP Server_AdminPostSession

This tool helps store administors. Set the cookie session ID of an admin user. The admin must be previously authenticated with the /auth/user/{provider} API route first, as the JWT token is required in the header of the request.

Medusa MCP Server_AdminPostActor_typeAuth_providerCallback

This tool helps store administors. This API route is used by your dashboard or frontend application when a third-party provider redirects to it after authentication. It validates the authentication with the third-party provider and, if successful, returns an authentication token. All query parameters received from the third-party provider, such as code, state, and error, must be passed as query parameters to this route.

You can decode the JWT token using libraries like react-jwt in the frontend. If the decoded data doesn't have an actor_id property, then you must create a user, typically using the Accept Invite route passing the token in the request's Authorization header.

Medusa MCP Server_AdminPostActor_typeAuth_provider_register

This tool helps store administors. This API route retrieves a registration JWT token of a user that hasn't been registered yet. The token is used in the header of requests that create a user, such as the Accept Invite API route.

Medusa MCP Server_AdminPostActor_typeAuth_providerResetPassword

This tool helps store administors. Generate a reset password token for an admin user. This API route doesn't reset the admin's password or send them the reset instructions in a notification.

Instead, This API route emits the auth.password_reset event, passing it the token as a payload. You can listen to that event in a subscriber as explained in this guide, then send the user a notification. The notification is sent using a Notification Module Provider, and it should have the URL to reset the password in the Medusa Admin dashboard, such as http://localhost:9000/app/reset-password?token=123.

Use the generated token to update the user's password using the Reset Password API route.

Medusa MCP Server_AdminPostActor_typeAuth_providerUpdate

This tool helps store administors. Reset an admin user's password using a reset-password token generated with the Generate Reset Password Token API route. You pass the token as a bearer token in the request's Authorization header.

Medusa MCP Server_PostActor_typeAuth_provider

Authenticate a customer and receive the JWT token to be used in the header of subsequent requests.

When used with a third-party provider, such as Google, the request returns a location property. You redirect to the specified URL in your storefront to continue authentication with the third-party service.

Medusa MCP Server_PostActor_typeAuth_providerCallback

This API route is used by your storefront or frontend application when a third-party provider redirects to it after authentication. It validates the authentication with the third-party provider and, if successful, returns an authentication token. All query parameters received from the third-party provider, such as code, state, and error, must be passed as query parameters to this route. You can decode the JWT token using libraries like react-jwt in the storefront. If the decoded data doesn't have an actor_id property, then you must register the customer using the Create Customer API route passing the token in the request's Authorization header.

Medusa MCP Server_PostActor_typeAuth_provider_register

This API route retrieves a registration JWT token of a customer that hasn't been registered yet. The token is used in the header of requests that create a customer.

Medusa MCP Server_PostActor_typeAuth_providerResetPassword

Generate a reset password token for a customer. This API route doesn't reset the customer password or send them the reset instructions in a notification.

Instead, This API route emits the auth.password_reset event, passing it the token as a payload. You can listen to that event in a subscriber as explained in this guide, then send the customer a notification. The notification is sent using a Notification Module Provider, and it should have a URL that accepts a token query parameter, allowing the customer to reset their password from the storefront.

Use the generated token to update the customer's password using the Reset Password API route.

Medusa MCP Server_PostActor_typeAuth_providerUpdate

Reset a customer's password using a reset-password token generated with the Generate Reset Password Token API route. You pass the token as a bearer token in the request's Authorization header.

Medusa MCP Server_PostSession

Set the cookie session ID of a customer. The customer must be previously authenticated with the /auth/customer/{provider} API route first, as the JWT token is required in the header of the request.

Medusa MCP Server_PostAdminAuthTokenRefresh

Refresh the authentication token of a customer. This is useful after authenticating a customer with a third-party service to ensure the token holds the new user's details, or when you don't want customers to re-login every day.

Medusa MCP Server_PostCarts

Create a cart.

Medusa MCP Server_GetCartsId

Retrieve a cart by its ID. You can expand the cart's relations or select the fields that should be returned.

Medusa MCP Server_PostCartsIdComplete

Complete a cart and place an order.

Medusa MCP Server_PostCartsIdCustomer

Set the customer of the cart. This is useful when you create the cart for a guest customer, then they log in with their account.

Medusa MCP Server_PostCartsIdLineItems

Add a product variant as a line item in the cart.

Medusa MCP Server_PostCartsIdLineItemsLine_id

Update a line item's details in the cart.

Medusa MCP Server_PostCartsIdPromotions

Add a list of promotions to a cart.

Medusa MCP Server_PostCartsIdShippingMethods

Add a shipping method to a cart. Use this API route when the customer chooses their preferred shipping option.

Medusa MCP Server_PostCartsIdTaxes

Calculate the cart's tax lines and amounts.

Medusa MCP Server_GetCollections

Retrieve a list of collections. The collections can be filtered by fields such as handle. The collections can also be sorted or paginated.

Medusa MCP Server_GetCollectionsId

Retrieve a collection by its ID. You can expand the collection's relations or select the fields that should be returned.

Medusa MCP Server_GetCurrencies

Retrieve a list of currencies. The currencies can be filtered by fields such as code. The currencies can also be sorted or paginated.

Medusa MCP Server_GetCurrenciesCode

Retrieve a currency by its code. You can expand the currency's relations or select the fields that should be returned.

Medusa MCP Server_PostCustomers

Register a customer. Use the /auth/customer/emailpass/register API route first to retrieve the registration token and pass it in the header of the request.

Medusa MCP Server_GetCustomersMe

Retrieve the logged-in customer. You can expand the customer's relations or select the fields that should be returned.

Medusa MCP Server_GetCustomersMeAddresses

Retrieve the addresses of the logged-in customer. The addresses can be filtered by fields such as country_code. The addresses can also be sorted or paginated.

Medusa MCP Server_GetCustomersMeAddressesAddress_id

Retrieve an address of the logged-in customer. You can expand the address's relations or select the fields that should be returned.

Medusa MCP Server_GetOrders

Retrieve the orders of the logged-in customer. The orders can be filtered by fields such as id. The orders can also be sorted or paginated.

Medusa MCP Server_GetOrdersId

Retrieve an order by its ID. You can expand the order's relations or select the fields that should be returned.

Medusa MCP Server_PostOrdersIdTransferAccept

Accept an order to be transfered to a customer's account, which was specified when the transfer request was created. The transfer is requested previously either by the customer using the Request Order Transfer Store API route, or by the admin using the Request Order Transfer Admin API route.

Medusa MCP Server_PostOrdersIdTransferCancel

Cancel an order transfer that the logged-in customer previously requested using the Request Order Transfer API route.

Medusa MCP Server_PostOrdersIdTransferDecline

Decline an order transfer previously requested, typically by the admin user using the Request Order Transfer Admin API route.

Medusa MCP Server_PostOrdersIdTransferRequest

Request an order to be transfered to the logged-in customer's account. The transfer is confirmed using the Accept Order Transfer API route.

Medusa MCP Server_PostPaymentCollections

Create a payment collection for a cart. This is used during checkout, where the payment collection holds the cart's payment sessions.

Medusa MCP Server_PostPaymentCollectionsIdPaymentSessions

Initialize and add a payment session to a payment collection. This is used during checkout, where you create a payment collection for the cart, then initialize a payment session for the payment provider that the customer chooses.

Medusa MCP Server_GetPaymentProviders

Retrieve a list of payment providers. You must provide the region_id query parameter to retrieve the payment providers enabled in that region.

Medusa MCP Server_GetProductCategories

Retrieve a list of product categories. The product categories can be filtered by fields such as id. The product categories can also be sorted or paginated.

Medusa MCP Server_GetProductCategoriesId

Retrieve a product category by its ID. You can expand the product category's relations or select the fields that should be returned.

Medusa MCP Server_GetProductTags

Retrieve a list of product tags. The product tags can be filtered by fields such as id. The product tags can also be sorted or paginated.

Medusa MCP Server_GetProductTagsId

Retrieve a product tag by its ID. You can expand the product tag's relations or select the fields that should be returned.

Medusa MCP Server_GetProductTypes

Retrieve a list of product types. The product types can be filtered by fields such as id. The product types can also be sorted or paginated.

Medusa MCP Server_GetProductTypesId

Retrieve a product type by its ID. You can expand the product type's relations or select the fields that should be returned.

Medusa MCP Server_GetProducts

Retrieve a list of products. The products can be filtered by fields such as id. The products can also be sorted or paginated.

Medusa MCP Server_GetProductsId

Retrieve a product by its ID. You can expand the product's relations or select the fields that should be returned.

Medusa MCP Server_GetRegions

Retrieve a list of regions. The regions can be filtered by fields such as id. The regions can also be sorted or paginated.

Medusa MCP Server_GetRegionsId

Retrieve a region by its ID. You can expand the region's relations or select the fields that should be returned.

Medusa MCP Server_PostReturn

Create a return for an order's items. The admin receives the return and process it from their side.

Medusa MCP Server_GetReturnReasons

Retrieve a list of return reasons. The return reasons can be sorted or paginated.

Medusa MCP Server_GetReturnReasonsId

Retrieve a return reason by its ID. You can expand the return reason's relations or select the fields that should be returned.

Medusa MCP Server_GetShippingOptions

Retrieve a list of shipping options for a cart. The cart's ID is set in the required cart_id query parameter.

The shipping options also be sorted or paginated.

Medusa MCP Server_PostShippingOptionsIdCalculate

Calculate the price of a shipping option in a cart.

Medusa MCP Server_AdminGetApiKeys

This tool helps store administors. Retrieve a list of API keys. The API keys can be filtered by fields such as id. The API keys can also be sorted or paginated.

Medusa MCP Server_AdminGetApiKeysId

This tool helps store administors. Retrieve an API key by its ID. You can expand the API key's relations or select the fields that should be returned using the query parameters.

Medusa MCP Server_AdminPostApiKeysIdRevoke

This tool helps store administors. Revokes an API key. If the API key is a secret, it can't be used for authentication anymore. If it's publishable, it can't be used by client applications.

Medusa MCP Server_AdminPostApiKeysIdSalesChannels

This tool helps store administors. Manage the sales channels of a publishable API key, either to associate them or remove them from the API key.

Medusa MCP Server_AdminGetCampaigns

This tool helps store administors. Retrieve a list of campaigns. The campaigns can be filtered by fields such as id. The campaigns can also be sorted or paginated.

Medusa MCP Server_AdminGetCampaignsId

This tool helps store administors. Retrieve a campaign by its ID. You can expand the campaign's relations or select the fields that should be returned using the query parameters.

Medusa MCP Server_AdminPostCampaignsIdPromotions

This tool helps store administors. Manage the promotions of a campaign, either by adding them or removing them from the campaign.

Medusa MCP Server_AdminGetClaims

This tool helps store administors. Retrieve a list of claims. The claims can be filtered by fields such as id. The claims can also be sorted or paginated.

Medusa MCP Server_AdminGetClaimsId

This tool helps store administors. Retrieve a claim by its ID. You can expand the claim's relations or select the fields that should be returned using the query parameters.

Medusa MCP Server_AdminPostClaimsIdCancel

This tool helps store administors. Cancel a claim and its associated return.

Medusa MCP Server_AdminPostClaimsIdClaimItems

This tool helps store administors. Add order items to a claim as claim items. These claim items will have the action WRITE_OFF_ITEM.

Medusa MCP Server_AdminPostClaimsIdClaimItemsAction_id

This tool helps store administors. Update an order item in a claim by the ID of the item's WRITE_OFF_ITEM action.

Every item has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property.

Medusa MCP Server_AdminPostClaimsIdInboundItems

This tool helps store administors. Add inbound (or return) items to a claim. These inbound items will have a RETURN_ITEM action.

Medusa MCP Server_AdminPostClaimsIdInboundItemsAction_id

This tool helps store administors. Update an inbound (or return) item of a claim using the ID of the item's RETURN_ITEM action.

Every item has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property.

Medusa MCP Server_AdminPostClaimsIdInboundShippingMethod

This tool helps store administors. Add an inbound (or return) shipping method to a claim. The inbound shipping method will have a SHIPPING_ADD action.

Medusa MCP Server_AdminPostClaimsIdInboundShippingMethodAction_id

This tool helps store administors. Update the shipping method for returning items in the claim using the ID of the method's SHIPPING_ADD action.

Every shipping method has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property.

Medusa MCP Server_AdminPostClaimsIdOutboundItems

This tool helps store administors. Add outbound (or new) items to a claim. These outbound items will have an ITEM_ADD action.

Medusa MCP Server_AdminPostClaimsIdOutboundItemsAction_id

This tool helps store administors. Update an outbound (or new) item of a claim using the ID of the item's ITEM_ADD action.

Every item has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property.

Medusa MCP Server_AdminPostClaimsIdRequest

This tool helps store administors. Confirm a claim request, applying its changes on the associated order.

Medusa MCP Server_AdminPostClaimsIdOutboundShippingMethod

This tool helps store administors. Add an outbound shipping method to a claim. The outbound shipping method will have a SHIPPING_ADD action.

Medusa MCP Server_AdminPostClaimsIdOutboundShippingMethodAction_id

This tool helps store administors. Update the shipping method for delivering outbound items in a claim using the ID of the method's SHIPPING_ADD action.

Every shipping method has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property.

Medusa MCP Server_AdminGetCollections

This tool helps store administors. Retrieve a list of collections. The collections can be filtered by fields such as id. The collections can also be sorted or paginated.

Medusa MCP Server_AdminGetCollectionsId

This tool helps store administors. Retrieve a collection by its ID. You can expand the collection's relations or select the fields that should be returned using the query parameters.

Medusa MCP Server_AdminPostCollectionsIdProducts

This tool helps store administors. Manage the products of a collection by adding or removing them from the collection.

Medusa MCP Server_AdminGetCurrencies

This tool helps store administors. Retrieve a list of currencies. The currencies can be filtered by fields such as id. The currencies can also be sorted or paginated.

Medusa MCP Server_AdminGetCurrenciesCode

This tool helps store administors. Retrieve a currency by its code. You can expand the currency's relations or select the fields that should be returned using the query parameters.

Medusa MCP Server_AdminGetCustomerGroups

This tool helps store administors. Retrieve a list of customer groups. The customer groups can be filtered by fields such as id. The customer groups can also be sorted or paginated.

Medusa MCP Server_AdminGetCustomerGroupsId

This tool helps store administors. Retrieve a customer group by its ID. You can expand the customer group's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostCustomerGroupsIdCustomers

This tool helps store administors. Manage the customers of a group to add or remove them from the group.

Medusa MCP Server_AdminGetCustomers

This tool helps store administors. Retrieve a list of customers. The customers can be filtered by fields such as id. The customers can also be sorted or paginated.

Medusa MCP Server_AdminGetCustomersId

This tool helps store administors. Retrieve a customer by its ID. You can expand the customer's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostExchangesIdOutboundShippingMethod

This tool helps store administors. Add an outbound shipping method to an exchange. The outbound shipping method will have a SHIPPING_ADD action.

Medusa MCP Server_AdminGetCustomersIdAddresses

This tool helps store administors. Retrieve a list of addresses in a customer. The addresses can be filtered by fields like query. The addresses can also be paginated.

Medusa MCP Server_AdminGetCustomersIdAddressesAddress_id

This tool helps store administors. Retrieve a list of a customer's addresses. The addresses can be filtered by fields like company. The addresses can also be paginated.

Medusa MCP Server_AdminPostCustomersIdCustomerGroups

This tool helps store administors. Manage the customer groups of a customer, adding or removing the customer from those groups.

Medusa MCP Server_AdminGetDraftOrders

This tool helps store administors. Retrieve a list of draft orders. The draft orders can be filtered by fields such as id. The draft orders can also be sorted or paginated.

Medusa MCP Server_AdminGetDraftOrdersId

This tool helps store administors. Retrieve a draft order by its ID. You can expand the draft order's relations or select the fields that should be returned using the query parameters.

Medusa MCP Server_AdminGetExchanges

This tool helps store administors. Retrieve a list of exchanges. The exchanges can be filtered by fields such as id. The exchanges can also be sorted or paginated.

Medusa MCP Server_AdminGetExchangesId

This tool helps store administors. Retrieve an exchange by its ID. You can expand the exchange's relations or select the fields that should be returned using query parameters.

Medusa MCP Server_AdminPostExchangesIdCancel

This tool helps store administors. Cancel an exchange and its associated return.

Medusa MCP Server_AdminPostExchangesIdInboundItems

This tool helps store administors. Add inbound (or return) items to an exchange. These inbound items will have the action RETURN_ITEM.

Medusa MCP Server_AdminPostExchangesIdInboundItemsAction_id

This tool helps store administors. Update an inbound (or return) item from an exchange using the ID of the item's RETURN_ITEM action.

Every item has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property.

Medusa MCP Server_AdminPostExchangesIdInboundShippingMethod

This tool helps store administors. Add an inbound (or return) shipping method to an exchange. The inbound shipping method will have a SHIPPING_ADD action.

Medusa MCP Server_AdminPostExchangesIdInboundShippingMethodAction_id

This tool helps store administors. Update the shipping method for returning items in the exchange using the ID of the method's SHIPPING_ADD action.

Every shipping method has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property.

Medusa MCP Server_AdminPostExchangesIdOutboundItems

This tool helps store administors. Add outbound (or new) items to an exchange. These outbound items will have the action ITEM_ADD.

Medusa MCP Server_AdminPostExchangesIdOutboundItemsAction_id

This tool helps store administors. Update an outbound (or new) item from an exchange using the ID of the item's ITEM_ADD action.

Every item has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property.

Medusa MCP Server_AdminPostExchangesIdOutboundShippingMethodAction_id

This tool helps store administors. Update the shipping method for delivering outbound items in the exchange using the ID of the method's SHIPPING_ADD action.

Every shipping method has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property.

Medusa MCP Server_AdminPostExchangesIdRequest

This tool helps store administors. Confirm an exchange request, applying its changes on the associated order.

Medusa MCP Server_AdminPostOrderEdits

This tool helps store administors. Create an order edit.

Medusa MCP Server_AdminGetFulfillmentProviders

This tool helps store administors. Retrieve a list of fulfillment providers. The fulfillment providers can be filtered by fields such as id. The fulfillment providers can also be sorted or paginated.

Medusa MCP Server_AdminGetFulfillmentProvidersIdOptions

This tool helps store administors. Retrieve the list of fulfillment options of a fulfillment provider. These options may be retrieved from an integrated third-party service.

Medusa MCP Server_AdminDeleteFulfillmentSetsId

This tool helps store administors. Delete a fulfillment set.

Medusa MCP Server_AdminPostFulfillmentSetsIdServiceZones

This tool helps store administors. Add a service zone to a fulfillment set.

Medusa MCP Server_AdminGetFulfillmentSetsIdServiceZonesZone_id

This tool helps store administors. Retrieve a service zone that belongs to a fulfillment set. be paginated.

Medusa MCP Server_AdminPostFulfillments

This tool helps store administors. Create a fulfillment for an order, return, exchange, and more.

Medusa MCP Server_AdminPostFulfillmentsIdCancel

This tool helps store administors. Cancel a fulfillment. The fulfillment can't be shipped or delivered.

To cancel the fulfillment, the cancelFulfillment method of the associated fulfillment provider is used.

Medusa MCP Server_AdminPostFulfillmentsIdShipment

This tool helps store administors. Create a shipment for a fulfillment. The fulfillment must not be shipped or canceled.

Medusa MCP Server_AdminGetInventoryItems

This tool helps store administors. Retrieve a list of inventory items. The inventory items can be filtered by fields such as id. The inventory items can also be sorted or paginated.

Medusa MCP Server_AdminDeleteOrderEditsId

This tool helps store administors. Cancel an order edit.

Medusa MCP Server_AdminPostInventoryItemsLocationLevelsBatch

This tool helps store administors. Manage inventory levels to create, update, or delete them.

Medusa MCP Server_AdminGetInventoryItemsId

This tool helps store administors. Retrieve a inventory item by its ID. You can expand the inventory item's relations or select the fields that should be returned.

Medusa MCP Server_AdminGetInventoryItemsIdLocationLevels

This tool helps store administors. Retrieve a list of inventory levels associated with an inventory item. The inventory levels can be filtered by fields like location_id. The inventory levels can also be paginated.

Medusa MCP Server_AdminPostInventoryItemsIdLocationLevelsBatch

This tool helps store administors. Manage the inventory levels of an inventory item to create or delete them.

Medusa MCP Server_AdminPostInventoryItemsIdLocationLevelsLocation_id

This tool helps store administors. Updates the details of an inventory item's inventory level using its associated location ID.

Medusa MCP Server_AdminGetInvites

This tool helps store administors. Retrieve a list of invites. The invites can be filtered by fields such as id. The invites can also be sorted or paginated.

Medusa MCP Server_AdminPostInvitesAccept

This tool helps store administors. Accept an invite and create a new user. Since the user isn't created yet, the JWT token used in the authorization header is retrieved from the /auth/user/emailpass/register API route (or a provider other than emailpass). The user can then authenticate using the /auth/user/emailpass API route.

Medusa MCP Server_AdminGetInvitesId

This tool helps store administors. Retrieve an invite by its ID. You can expand the invite's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostInvitesIdResend

This tool helps store administors. Refresh the token of an invite.

Medusa MCP Server_AdminGetNotifications

This tool helps store administors. Retrieve a list of notifications. The notifications can be filtered by fields such as id. The notifications can also be sorted or paginated.

Medusa MCP Server_AdminGetNotificationsId

This tool helps store administors. Retrieve a notification by its ID. You can expand the notification's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostOrderEditsIdConfirm

This tool helps store administors. Confirm an order edit request and apply the changes on the order.

Medusa MCP Server_AdminPostOrderEditsIdItems

This tool helps store administors. Add new items to an order edit. These items will have the action ITEM_ADD.

Medusa MCP Server_AdminPostOrderEditsIdItemsItemItem_id

This tool helps store administors. Update an existing order item's quantity of an order edit.

Medusa MCP Server_AdminPostOrderEditsIdItemsAction_id

This tool helps store administors. Update an added item in the order edit by the ID of the item's ITEM_ADD action.

Every item has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property.

Medusa MCP Server_AdminPostOrderEditsIdRequest

This tool helps store administors. Change the status of an active order edit to requested.

Medusa MCP Server_AdminPostOrderEditsIdShippingMethod

This tool helps store administors. Add a shipping method to an exchange. The shipping method will have a SHIPPING_ADD action.

Medusa MCP Server_AdminPostOrderEditsIdShippingMethodAction_id

This tool helps store administors. Update a shipping method in the order edit by the ID of the method's SHIPPING_ADD action.

Every shipping method has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property.

Medusa MCP Server_AdminGetOrders

This tool helps store administors. Retrieve a list of orders. The orders can be filtered by fields such as id. The orders can also be sorted or paginated.

Medusa MCP Server_AdminGetOrdersId

This tool helps store administors. Retrieve an order by its ID. You can expand the order's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostOrdersIdArchive

This tool helps store administors. Change the status of an order to archived.

Medusa MCP Server_AdminPostOrdersIdCancel

This tool helps store administors. Cancel an order. The cancelation fails if:

  • The order has captured payments.
  • The order has refund payments.
  • The order has fulfillments that aren't canceled.
Medusa MCP Server_AdminGetOrdersIdChanges

This tool helps store administors. Retrieve a list of changes made on an order, including returns, exchanges, etc...

The changes can be filtered by fields like FILTER FIELDS. The changes can also be paginated.

Medusa MCP Server_AdminPostOrdersIdComplete

This tool helps store administors. Mark an order as completed.

Medusa MCP Server_AdminPostOrdersIdFulfillments

This tool helps store administors. Create a fulfillment for an order. The creation fails if the order is canceled.

Medusa MCP Server_AdminPostOrdersIdFulfillmentsFulfillment_idCancel

This tool helps store administors. Cancel an order's fulfillment. The fulfillment can't be canceled if it's shipped.

Medusa MCP Server_AdminPostOrdersIdFulfillmentsFulfillment_idMarkAsDelivered

This tool helps store administors. Mark an order's fulfillment as delivered.

Medusa MCP Server_AdminPostOrdersIdFulfillmentsFulfillment_idShipments

This tool helps store administors. Create a shipment for an order's fulfillment.

Medusa MCP Server_AdminGetOrdersIdLineItems

This tool helps store administors. Retrieve a list of line items in a order. The line items can be filtered by fields like FILTER FIELDS. The line items can also be paginated.

Medusa MCP Server_AdminGetOrdersIdPreview

This tool helps store administors. Retrieve a preview of an order using its associated change, such as an edit.

Medusa MCP Server_AdminPostOrdersIdTransfer

This tool helps store administors. Request an order to be transfered to another customer. The transfer is confirmed by sending a request to the Accept Order Transfer Store API route.

Medusa MCP Server_AdminPostOrdersIdTransferCancel

This tool helps store administors. Cancel a request to transfer an order to another customer.

Medusa MCP Server_AdminPostPaymentCollections

This tool helps store administors. Create a payment collection.

Medusa MCP Server_AdminDeletePaymentCollectionsId

This tool helps store administors. Delete a payment collection.

Medusa MCP Server_AdminPostPaymentCollectionsIdMarkAsPaid

This tool helps store administors. Mark a payment collection as paid. This creates and authorizes a payment session, then capture its payment, using the manual payment provider.

Medusa MCP Server_AdminGetPayments

This tool helps store administors. Retrieve a list of payments. The payments can be filtered by fields such as id. The payments can also be sorted or paginated.

Medusa MCP Server_AdminGetPaymentsPaymentProviders

This tool helps store administors. Retrieve a list of payment providers. The payment providers can be filtered by fields such as id. The payment providers can also be sorted or paginated.

Medusa MCP Server_AdminGetPaymentsId

This tool helps store administors. Retrieve a payment by its ID. You can expand the payment's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostPaymentsIdCapture

This tool helps store administors. Capture an amount of a payment. This uses the capturePayment method of the payment provider associated with the payment's collection.

Medusa MCP Server_AdminPostPaymentsIdRefund

This tool helps store administors. Refund an amount of a payment. This uses the refundPayment method of the payment provider associated with the payment's collection.

Medusa MCP Server_AdminGetPriceLists

This tool helps store administors. Retrieve a list of price lists. The price lists can be filtered by fields such as id. The price lists can also be sorted or paginated.

Medusa MCP Server_AdminGetPriceListsId

This tool helps store administors. Retrieve a price list by its ID. You can expand the price list's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostPriceListsIdPricesBatch

This tool helps store administors. Manage the prices of a price list to create, update, or delete them.

Medusa MCP Server_AdminPostPriceListsIdProducts

This tool helps store administors. Remove products from a price list.

Medusa MCP Server_AdminGetPricePreferences

This tool helps store administors. Retrieve a list of price preferences. The price preferences can be filtered by fields such as id. The price preferences can also be sorted or paginated.

Medusa MCP Server_AdminGetPricePreferencesId

This tool helps store administors. Retrieve a price preference by its ID. You can expand the price preference's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostProductsImport

This tool helps store administors. Create a new product import process. The products aren't imported until the import is confirmed with the /admin/products/:transaction-id/import API route.

Medusa MCP Server_AdminGetProductCategories

This tool helps store administors. Retrieve a list of product categories. The product categories can be filtered by fields such as id. The product categories can also be sorted or paginated.

Medusa MCP Server_AdminGetProductCategoriesId

This tool helps store administors. Retrieve a product category by its ID. You can expand the product category's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostProductCategoriesIdProducts

This tool helps store administors. Manage products of a category to add or remove them.

Medusa MCP Server_AdminGetProductTags

This tool helps store administors. Retrieve a list of product tags. The product tags can be filtered by fields such as id. The product tags can also be sorted or paginated.

Medusa MCP Server_AdminGetProductTagsId

This tool helps store administors. Retrieve a product tag by its ID. You can expand the product tag's relations or select the fields that should be returned.

Medusa MCP Server_AdminGetProductTypes

This tool helps store administors. Retrieve a list of product types. The product types can be filtered by fields such as id. The product types can also be sorted or paginated.

Medusa MCP Server_AdminGetProductTypesId

This tool helps store administors. Retrieve a product type by its ID. You can expand the product type's relations or select the fields that should be returned.

Medusa MCP Server_AdminGetProductVariants

This tool helps store administors. Retrieve a list of product variants. The product variants can be filtered by fields such as id. The product variants can also be sorted or paginated.

Medusa MCP Server_AdminGetProducts

This tool helps store administors. Retrieve a list of products. The products can be filtered by fields such as id. The products can also be sorted or paginated.

Medusa MCP Server_AdminPostProductsBatch

This tool helps store administors. Manage products to create, update, or delete them.

Medusa MCP Server_AdminPostProductsExport

This tool helps store administors. Start a product export process to retrieve a CSV of exported products.

You'll receive in the response the transaction ID of the workflow generating the CSV file. To check the status of the execution, send a GET request to /admin/workflows-executions/export-products/:transaction-id. Once the execution finishes successfully, a notification is created for the export. You can retrieve the notifications using the /admin/notification API route to retrieve the file's download URL.

Medusa MCP Server_AdminPostProductsImportTransaction_idConfirm

This tool helps store administors. Confirm that a created product import should start importing the products into Medusa.

Medusa MCP Server_AdminGetProductsId

This tool helps store administors. Retrieve a product by its ID. You can expand the product's relations or select the fields that should be returned.

Medusa MCP Server_AdminGetProductsIdOptions

This tool helps store administors. Retrieve a list of options of a product. The options can be filtered by fields like id. The options can also be paginated.

Medusa MCP Server_AdminGetProductsIdOptionsOption_id

This tool helps store administors. Retrieve a product's option by its ID.

Medusa MCP Server_AdminGetProductsIdVariants

This tool helps store administors. Retrieve a list of variants in a product. The variants can be filtered by fields like FILTER FIELDS. The variants can also be paginated.

Medusa MCP Server_AdminPostProductsIdVariantsBatch

This tool helps store administors. Manage variants in a product to create, update, or delete them.

Medusa MCP Server_AdminPostProductsIdVariantsInventoryItemsBatch

This tool helps store administors. Manage a product's variant's inventoris to associate them with inventory items, update their inventory items, or delete their association with inventory items.

Medusa MCP Server_AdminGetProductsIdVariantsVariant_id

This tool helps store administors. Retrieve a product's variant by its ID.

Medusa MCP Server_AdminPostProductsIdVariantsVariant_idInventoryItems

This tool helps store administors. Associate with a product variant an inventory item that manages its inventory details.

Medusa MCP Server_AdminPostProductsIdVariantsVariant_idInventoryItemsInventory_item_id

This tool helps store administors. Update the inventory item that manages the inventory details of a product variant.

Medusa MCP Server_AdminGetPromotions

This tool helps store administors. Retrieve a list of promotions. The promotions can be filtered by fields such as id. The promotions can also be sorted or paginated.

Medusa MCP Server_AdminGetPromotionsRuleAttributeOptionsRule_type

This tool helps store administors. Retrieve a list of potential rule attributes for the promotion and application method types specified in the query parameters. Only the attributes of the rule type specified in the path parameter are retrieved:

  • If rule_type is rules, the attributes of the promotion's type are retrieved.
  • If rule_type is target-rules, the target rules' attributes of the application method's type are retrieved.
  • If rule_type is buy-rules, the buy rules' attributes of the application method's type are retrieved.
Medusa MCP Server_AdminGetPromotionsRuleValueOptionsRule_typeRule_attribute_id

This tool helps store administors. Retrieve all potential values for promotion rules and target and buy rules based on the specified rule attribute and type. For example, if you provide the ID of the currency_code rule attribute, and set rule_type to rules, a list of currencies are retrieved in label-value pairs.

Medusa MCP Server_AdminGetPromotionsId

This tool helps store administors. Retrieve a promotion by its ID. You can expand the promotion's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostPromotionsIdBuyRulesBatch

This tool helps store administors. Manage the buy rules of a buyget promotion to create, update, or delete them.

Medusa MCP Server_AdminPostPromotionsIdRulesBatch

This tool helps store administors. Manage the rules of a promotion to create, update, or delete them.

Medusa MCP Server_AdminPostPromotionsIdTargetRulesBatch

This tool helps store administors. Manage the target rules of a promotion to create, update, or delete them.

Medusa MCP Server_AdminGetPromotionsIdRule_type

This tool helps store administors. Retrieve a list of rules in a promotion. The type of rules retrieved depend on the value of the rule_type path parameter:

  • If rule_type is rules, the promotion's rules are retrivied. - If rule_type is target-rules, the target rules of the promotion's application method are retrieved.
  • If rule_type is buy-rules, the buy rules of the promotion's application method are retrieved.
Medusa MCP Server_AdminPostReturnsIdReceiveItems

This tool helps store administors. Add received items in a return. These items will have the action RECEIVE_RETURN_ITEM.

Medusa MCP Server_AdminGetRefundReasons

This tool helps store administors. Retrieve a list of refund reasons. The refund reasons can be filtered by fields such as id. The refund reasons can also be sorted or paginated.

Medusa MCP Server_AdminGetRefundReasonsId

This tool helps store administors. Retrieve a refund reason by its ID. You can expand the refund reason's relations or select the fields that should be returned.

Medusa MCP Server_AdminGetRegions

This tool helps store administors. Retrieve a list of regions. The regions can be filtered by fields such as id. The regions can also be sorted or paginated.

Medusa MCP Server_AdminGetRegionsId

This tool helps store administors. Retrieve a region by its ID. You can expand the region's relations or select the fields that should be returned.

Medusa MCP Server_AdminGetReservations

This tool helps store administors. Retrieve a list of reservations. The reservations can be filtered by fields such as id. The reservations can also be sorted or paginated.

Medusa MCP Server_AdminGetReservationsId

This tool helps store administors. Retrieve a reservation by its ID. You can expand the reservation's relations or select the fields that should be returned.

Medusa MCP Server_AdminGetReturnReasons

This tool helps store administors. Retrieve a list of return reasons. The return reasons can be filtered by fields such as id. The return reasons can also be sorted or paginated.

Medusa MCP Server_AdminGetReturnReasonsId

This tool helps store administors. Retrieve a return reason by its ID. You can expand the return reason's relations or select the fields that should be returned.

Medusa MCP Server_AdminGetReturns

This tool helps store administors. Retrieve a list of returns. The returns can be filtered by fields such as id. The returns can also be sorted or paginated.

Medusa MCP Server_AdminGetReturnsId

This tool helps store administors. Retrieve a return by its ID. You can expand the return's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostReturnsIdCancel

This tool helps store administors. Cancel a return.

Medusa MCP Server_AdminPostReturnsIdDismissItems

This tool helps store administors. Add damaged items, whose quantity is to be dismissed, to a return. These items will have the action RECEIVE_DAMAGED_RETURN_ITEM.

Medusa MCP Server_AdminPostReturnsIdDismissItemsAction_id

This tool helps store administors. Update a damaged item, whose quantity is to be dismissed, in the return by the ID of the item's RECEIVE_DAMAGED_RETURN_ITEM action.

Every item has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property. return.

Medusa MCP Server_AdminPostReturnsIdReceive

This tool helps store administors. Start a return receival process to be later confirmed using the /admin/returns/:id/receive/confirm API route.

Medusa MCP Server_AdminPostReturnsIdReceiveItemsAction_id

This tool helps store administors. Update a received item in the return by the ID of the item's RECEIVE_RETURN_ITEM action.

Every item has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property. return.

Medusa MCP Server_AdminPostReturnsIdReceiveConfirm

This tool helps store administors. Confirm that a return has been received. This updates the quantity of the items received, if not damaged, and reflects the changes on the order.

Medusa MCP Server_AdminPostReturnsIdRequest

This tool helps store administors. Confirm a requested return. The changes are applied on the inventory quantity and the order only after the return has been confirmed as received using the /admin/returns/:id/received/confirm.

Medusa MCP Server_AdminPostReturnsIdRequestItems

This tool helps store administors. Add items that are requested to be returned. These items will have the action RETURN_ITEM.

Medusa MCP Server_AdminPostReturnsIdRequestItemsAction_id

This tool helps store administors. Update a requested item to be returned by the ID of the item's RETURN_ITEM action.

Every item has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property. return.

Medusa MCP Server_AdminPostReturnsIdShippingMethod

This tool helps store administors. Add a shipping method to a return. The shipping method will have a SHIPPING_ADD action.

Medusa MCP Server_AdminPostReturnsIdShippingMethodAction_id

This tool helps store administors. Update a shipping method of the return by the ID of the item's SHIPPING_ADD action.

Every item has an actions property, whose value is an array of actions. You can check the action's name using its action property, and use the value of the id property.

Medusa MCP Server_AdminGetSalesChannels

This tool helps store administors. Retrieve a list of sales channels. The sales channels can be filtered by fields such as id. The sales channels can also be sorted or paginated.

Medusa MCP Server_AdminGetSalesChannelsId

This tool helps store administors. Retrieve a sales channel by its ID. You can expand the sales channel's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostSalesChannelsIdProducts

This tool helps store administors. Manage products in a sales channel to add or remove them from the channel.

Medusa MCP Server_AdminGetShippingOptions

This tool helps store administors. Retrieve a list of shipping options. The shipping options can be filtered by fields such as id. The shipping options can also be sorted or paginated.

Medusa MCP Server_AdminGetShippingOptionsId

This tool helps store administors. Retrieve a shipping option by its ID. You can expand the shipping option's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostShippingOptionsIdRulesBatch

This tool helps store administors. Manage the rules of a shipping option to create, update, or delete them.

Medusa MCP Server_AdminGetShippingProfiles

This tool helps store administors. Retrieve a list of shipping profiles. The shipping profiles can be filtered by fields such as id. The shipping profiles can also be sorted or paginated.

Medusa MCP Server_AdminGetShippingProfilesId

This tool helps store administors. Retrieve a shipping profile by its ID. You can expand the shipping profile's relations or select the fields that should be returned.

Medusa MCP Server_AdminGetStockLocations

This tool helps store administors. Retrieve a list of stock locations. The stock locations can be filtered by fields such as id. The stock locations can also be sorted or paginated.

Medusa MCP Server_AdminGetStockLocationsId

This tool helps store administors. Retrieve a stock location by its ID. You can expand the stock location's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostStockLocationsIdFulfillmentProviders

This tool helps store administors. Manage the fulfillment providers to add or remove them from a stock location.

Medusa MCP Server_AdminPostStockLocationsIdFulfillmentSets

This tool helps store administors. Create and add a fulfillment set to a stock location.

Medusa MCP Server_AdminPostStockLocationsIdSalesChannels

This tool helps store administors. Manage the sales channels in a stock location by adding or removing them.

Medusa MCP Server_AdminGetStores

This tool helps store administors. Retrieve a list of stores. The stores can be filtered by fields such as id. The stores can also be sorted or paginated.

Medusa MCP Server_AdminGetStoresId

This tool helps store administors. Retrieve a store by its ID. You can expand the store's relations or select the fields that should be returned.

Medusa MCP Server_AdminGetTaxRates

This tool helps store administors. Retrieve a list of tax rates. The tax rates can be filtered by fields such as id. The tax rates can also be sorted or paginated.

Medusa MCP Server_AdminGetTaxRatesId

This tool helps store administors. Retrieve a tax rate by its ID. You can expand the tax rate's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostTaxRatesIdRules

This tool helps store administors. Create a tax rule for a rate.

Medusa MCP Server_AdminDeleteTaxRatesIdRulesRule_id

This tool helps store administors. Remove a tax rate's rule.

Medusa MCP Server_AdminGetTaxRegions

This tool helps store administors. Retrieve a list of tax regions. The tax regions can be filtered by fields such as id. The tax regions can also be sorted or paginated.

Medusa MCP Server_AdminGetTaxRegionsId

This tool helps store administors. Retrieve a tax region by its ID. You can expand the tax region's relations or select the fields that should be returned.

Medusa MCP Server_AdminPostUploads

This tool helps store administors. Upload files to the configured File Module Provider.

Medusa MCP Server_AdminGetUploadsId

This tool helps store administors. Retrieve an uploaded file by its ID. You can expand the file's relations or select the fields that should be returned.

datadog mcp_get-monitors

Fetch monitors from Datadog with optional filtering. Use groupStates to filter by monitor status (e.g., 'alert', 'warn', 'no data'), tags or monitorTags to filter by tag criteria, and limit to control result size.

datadog mcp_get-monitor

Get detailed information about a specific Datadog monitor by its ID. Use this to retrieve the complete configuration, status, and other details of a single monitor.

datadog mcp_get-dashboards

Retrieve a list of all dashboards from Datadog. Useful for discovering available dashboards and their IDs for further exploration.

datadog mcp_get-dashboard

Get the complete definition of a specific Datadog dashboard by its ID. Returns all widgets, layout, and configuration details.

datadog mcp_get-metrics

List available metrics from Datadog. Optionally use the q parameter to search for specific metrics matching a pattern. Helpful for discovering metrics to use in monitors or dashboards.

datadog mcp_get-metric-metadata

Retrieve detailed metadata about a specific metric, including its type, description, unit, and other attributes. Use this to understand a metric's meaning and proper usage.

datadog mcp_get-events

Search for events in Datadog within a specified time range. Events include deployments, alerts, comments, and other activities. Useful for correlating system behaviors with specific events.

datadog mcp_get-incidents

List incidents from Datadog's incident management system. Can filter by active/archived status and use query strings to find specific incidents. Helpful for reviewing current or past incidents.

datadog mcp_search-logs

Search logs in Datadog with advanced filtering options. Use filter.query for search terms (e.g., 'service status'), from/to for time ranges (e.g., 'now-15m', 'now'), and sort to order results. Essential for investigating application issues.

datadog mcp_aggregate-logs

Perform analytical queries and aggregations on log data. Essential for calculating metrics (count, avg, sum, etc.), grouping data by fields, and creating statistical summaries from logs. Use this when you need to analyze patterns or extract metrics from log data.

MCP-FREDAPI_get_fred_series_observations

Get series observations from the Fred API.

Youtube Vision MCP_summarize_youtube_video

Generates a summary of a given YouTube video URL using Gemini Vision API.

Youtube Vision MCP_ask_about_youtube_video

Answers a question about the video or provides a general description if no question is asked.

Youtube Vision MCP_extract_key_moments

Extracts key moments (timestamps and descriptions) from a given YouTube video.

Youtube Vision MCP_list_supported_models

Lists available Gemini models that support the 'generateContent' method.

Agentset_knowledge-base-retrieve

Look up information in the Knowledge Base. Use this tool when you need to:

  • Find relevant documents or information on specific topics
  • Retrieve company policies, procedures, or guidelines
  • Access product specifications or technical documentation
  • Get contextual information to answer company-specific questions
  • Find historical data or information about projects
MCP Microsoft Teams Server_start_thread

Start a new thread with a given title and content

MCP Microsoft Teams Server_update_thread

Update an existing thread with new content

MCP Microsoft Teams Server_read_thread

Read replies in a thread

MCP Microsoft Teams Server_list_threads

List threads in channel with pagination

MCP Microsoft Teams Server_get_member_by_name

Get a member by its name

MCP Microsoft Teams Server_list_members

List all members in the team

BloodHound MCP_tool://list_network_shares_ignoring_sysvol

List network share(s), ignoring SYSVOL

BloodHound MCP_tool://list_all_groups

List all group(s)

BloodHound MCP_tool://list_all_gpos

List all GPO(s)

BloodHound MCP_tool://list_all_aad_groups_synchronized_with_ad

[WIP] List all AAD Group(s) that are synchronized with AD (Required: azurehound)

BloodHound MCP_tool://list_all_enabled_azure_users_group_memberships

List all enabled Azure User(s) Azure Group membership(s) (Required: azurehound)

BloodHound MCP_tool://list_all_principals_used_for_syncing_ad_and_aad

[WIP] List all principal(s) used for syncing AD and AAD

BloodHound MCP_tool://list_all_enabled_azure_users

List all enabled Azure User(s) (Required: azurehound)

BloodHound MCP_tool://list_privileges_for_certificate_authority_servers

[WIP] List privileges for Certificate Authority server(s) [Required: Certipy]

BloodHound MCP_tool://list_all_certificate_templates

List all Certificate Template(s) [Required: Certipy]

BloodHound MCP_tool://find_enabled_certificate_templates

Find enabled Certificate Template(s) [Required: Certipy]

BloodHound MCP_tool://list_all_enrollment_rights_for_certificate_templates

[WIP] List all Enrollment Right(s) for Certificate Template(s)

BloodHound MCP_tool://run_query

Cypher

Args: query: Cypher parameters:

Returns:

BloodHound MCP_tool://users_with_most_local_admin_rights

[WIP] Users with Most Local Admin Rights

BloodHound MCP_tool://computers_with_most_sessions

[WIP] Computers with Most Sessions [Required: sessions]

BloodHound MCP_tool://users_with_most_sessions

[WIP] Users with Most Sessions [Required: sessions]

BloodHound MCP_tool://non_privileged_users_with_dangerous_permissions

List non-privileged user(s) with dangerous permissions to any node type

BloodHound MCP_tool://route_non_privileged_users_with_dangerous_permissions

Route non-privileged user(s) with dangerous permissions to any node type

BloodHound MCP_tool://users_with_most_cross_domain_sessions

[WIP] Users with most cross-domain sessions [Required: sessions]

BloodHound MCP_tool://list_high_value_targets

List high value target(s)

BloodHound MCP_tool://list_domains

List domain(s)

BloodHound MCP_tool://list_domain_trusts

List domain trust(s)

BloodHound MCP_tool://list_enabled_users

List enabled user(s)

BloodHound MCP_tool://list_enabled_users_with_email

List enabled user(s) with an email address

BloodHound MCP_tool://list_non_managed_service_accounts

List non-managed service account(s)

BloodHound MCP_tool://list_enabled_principals_with_unconstrained_delegation

List enabled principal(s) with "Unconstrained Delegation"

BloodHound MCP_tool://list_enabled_principals_with_constrained_delegation

List enabled principal(s) with "Constrained Delegation"

BloodHound MCP_tool://list_domain_controllers

List domain controller(s)

BloodHound MCP_tool://list_domain_computers

List domain computer(s)

BloodHound MCP_tool://list_certificate_authority_servers

List Certificate Authority server(s) [Required: Certipy]

BloodHound MCP_tool://list_computers_without_laps

List computer(s) WITHOUT LAPS

BloodHound MCP_tool://list_all_principals_with_local_admin_permission

List all principal(s) with "Local Admin" permission

BloodHound MCP_tool://list_all_principals_with_rdp_permission

List all principal(s) with "RDP" permission

BloodHound MCP_tool://list_all_principals_with_sqladmin_permission

List all principal(s) with "SQLAdmin" permission

BloodHound MCP_tool://list_all_user_sessions

List all user session(s) [Required: sessions]

BloodHound MCP_tool://list_all_users_with_description_field

List all user(s) with description field

BloodHound MCP_tool://list_all_enabled_users_with_userpassword_attribute

List all enabled user(s) with "userpassword" attribute

BloodHound MCP_tool://list_all_enabled_users_with_password_never_expires

List all enabled user(s) with "password never expires" attribute

BloodHound MCP_tool://list_all_enabled_users_with_password_never_expires_not_changed_last_year

List all enabled user(s) with "password never expires" attribute and not changed in last year

BloodHound MCP_tool://list_all_enabled_users_with_no_password_required

List all enabled user(s) with "don't require passwords" attribute

BloodHound MCP_tool://list_all_enabled_users_never_logged_in

List all enabled user(s) but never logged in

BloodHound MCP_tool://list_all_enabled_users_logged_in_last_90_days

List all enabled user(s) that logged in within the last 90 days

BloodHound MCP_tool://list_all_enabled_users_set_password_last_90_days

List all enabled user(s) that set password within the last 90 days

BloodHound MCP_tool://list_all_enabled_users_with_foreign_group_membership

List all enabled user(s) with foreign group membership

BloodHound MCP_tool://list_all_owned_users

List all owned user(s)

BloodHound MCP_tool://list_all_owned_enabled_users

List all owned & enabled user(s)

BloodHound MCP_tool://list_all_owned_enabled_users_with_email

List all owned & enabled user(s) with an email address

BloodHound MCP_tool://list_all_owned_enabled_users_with_local_admin_and_sessions

List all owned & enabled user(s) with "Local Admin" permission, and any active sessions and their group membership(s)

BloodHound MCP_tool://list_all_owned_enabled_users_with_rdp_and_sessions

List all owned & enabled user(s) with "RDP" permission, and any active sessions and their group membership(s)

BloodHound MCP_tool://list_all_owned_enabled_users_with_sqladmin

List all owned & enabled user(s) with "SQLAdmin" permission

BloodHound MCP_tool://list_all_owned_computers

List all owned computer(s)

BloodHound MCP_tool://route_all_owned_enabled_group_memberships

Route all owned & enabled group membership(s)

BloodHound MCP_tool://route_all_owned_enabled_non_privileged_group_memberships

Route all owned & enabled non-privileged group(s) membership

BloodHound MCP_tool://route_all_owned_enabled_privileged_group_memberships

Route all owned & enabled privileged group(s) membership

BloodHound MCP_tool://route_all_owned_enabled_users_with_dangerous_rights_to_any_node

Route all owned & enabled user(s) with Dangerous Rights to any node type

BloodHound MCP_tool://route_all_owned_enabled_users_with_dangerous_rights_to_groups

Route all owned & enabled user(s) with Dangerous Rights to group(s)

BloodHound MCP_tool://route_all_owned_enabled_users_with_dangerous_rights_to_users

Route all owned & enabled user(s) with Dangerous Rights to user(s)

BloodHound MCP_tool://route_from_owned_enabled_users_to_unconstrained_delegation

Route from owned & enabled user(s) to all principals with "Unconstrained Delegation"

BloodHound MCP_tool://route_from_owned_enabled_principals_to_high_value_targets

Route from owned & enabled principals to high value target(s)

BloodHound MCP_tool://find_all_owned_users_with_privileged_access_to_azure_tenancy

Owned: [WIP] Find all owned user with privileged access to Azure Tenancy (Required: azurehound)

BloodHound MCP_tool://find_all_owned_users_where_group_grants_azure_privileged_access

Owned: [WIP] Find all owned user where group membership grants privileged access to Azure Tenancy (Required: azurehound)

BloodHound MCP_tool://find_all_owners_of_azure_applications_with_dangerous_rights

Owned: [WIP] Find all Owners of Azure Applications with Owners to Service Principals with Dangerous Rights (Required: azurehound)

BloodHound MCP_tool://find_all_owned_groups_granting_network_share_access

Find all owned groups that grant access to network shares

BloodHound MCP_tool://route_all_sessions_to_computers_without_laps

Route all sessions to computers WITHOUT LAPS (Required: sessions)

BloodHound MCP_tool://route_all_sessions_to_computers

Route all sessions to computers (Required: sessions)

BloodHound MCP_tool://list_enabled_non_privileged_users_with_local_admin

List enabled non-privileged user(s) with "Local Admin" permission

BloodHound MCP_tool://list_enabled_non_privileged_users_with_local_admin_and_sessions

List enabled non-privileged user(s) with "Local Admin" permission, and any active sessions and their group membership(s)

BloodHound MCP_tool://list_enabled_non_privileged_users_with_rdp

List enabled non-privileged user(s) with "RDP" permission

BloodHound MCP_tool://list_enabled_non_privileged_users_with_rdp_and_sessions

List enabled non-privileged user(s) with "RDP" permission, and any active sessions and their group membership(s)

BloodHound MCP_tool://list_enabled_non_privileged_users_with_sqladmin

List enabled non-privileged user(s) with "SQLAdmin" permission

BloodHound MCP_tool://list_all_domain_users_group_memberships

List all "Domain Users" group membership(s)

BloodHound MCP_tool://list_all_authenticated_users_group_memberships

List all "Authenticated Users" group membership(s)

BloodHound MCP_tool://find_all_enabled_as_rep_roastable_users

Find all enabled AS-REP roastable user(s)

BloodHound MCP_tool://find_all_enabled_kerberoastable_users

Find all enabled kerberoastable user(s)

BloodHound MCP_tool://route_non_privileged_users_with_dangerous_rights_to_users

Route non-privileged user(s) with dangerous rights to user(s) [HIGH RAM]

BloodHound MCP_tool://route_non_privileged_users_with_dangerous_rights_to_groups

Route non-privileged user(s) with dangerous rights to group(s) [HIGH RAM]

BloodHound MCP_tool://route_non_privileged_users_with_dangerous_rights_to_computers

Route non-privileged user(s) with dangerous rights to computer(s) [HIGH RAM]

BloodHound MCP_tool://route_non_privileged_users_with_dangerous_rights_to_gpos

Route non-privileged user(s) with dangerous rights to GPO(s) [HIGH RAM]

BloodHound MCP_tool://route_non_privileged_users_with_dangerous_rights_to_privileged_nodes

Route non-privileged user(s) with dangerous rights to privileged node(s) [HIGH RAM]

BloodHound MCP_tool://route_non_privileged_computers_with_dangerous_rights_to_users

Route non-privileged computer(s) with dangerous rights to user(s) [HIGH RAM]

BloodHound MCP_tool://route_non_privileged_computers_with_dangerous_rights_to_groups

Route non-privileged computer(s) with dangerous rights to group(s) [HIGH RAM]

BloodHound MCP_tool://route_non_privileged_computers_with_dangerous_rights_to_computers

Route non-privileged computer(s) with dangerous rights to computer(s) [HIGH RAM]

BloodHound MCP_tool://route_non_privileged_computers_with_dangerous_rights_to_gpos

Route non-privileged computer(s) with dangerous rights to GPO(s) [HIGH RAM]

BloodHound MCP_tool://route_non_privileged_computers_with_dangerous_rights_to_privileged_nodes

Route non-privileged computer(s) with dangerous rights to privileged node(s) [HIGH RAM]

BloodHound MCP_tool://list_esc1_vulnerable_certificate_templates

List ESC1 vulnerable Certificate Template(s) [Required: Certipy]

BloodHound MCP_tool://list_esc2_vulnerable_certificate_templates

List ESC2 vulnerable Certificate Template(s) [Required: Certipy]

BloodHound MCP_tool://list_esc3_vulnerable_certificate_templates

List ESC3 vulnerable Certificate Template(s) [Required: Certipy]

BloodHound MCP_tool://list_esc4_vulnerable_certificate_templates

List ESC4 vulnerable Certificate Template(s) [Required: Certipy]

BloodHound MCP_tool://list_esc6_vulnerable_certificate_templates

List ESC6 vulnerable Certificate Template(s) [Required: Certipy]

BloodHound MCP_tool://list_esc7_vulnerable_certificate_templates

List ESC7 vulnerable Certificate Template(s) [Required: Certipy]

BloodHound MCP_tool://list_esc8_vulnerable_certificate_templates

List ESC8 vulnerable Certificate Template(s) [Required: Certipy]

BloodHound MCP_tool://list_all_cross_domain_user_sessions_and_memberships

List all cross-domain user session(s) and user group membership(s)

BloodHound MCP_tool://list_privileged_users_without_protected_users

List privileged user(s) without "Protected Users" group membership

BloodHound MCP_tool://list_custom_privileged_groups

List custom privileged group(s)

BloodHound MCP_tool://list_enabled_svc_accounts_with_privileged_group_memberships

List all enabled SVC account(s) with privileged group membership(s)

BloodHound MCP_tool://route_privileged_users_with_sessions_to_non_privileged_computers

Route all privileged user(s) with sessions to non-privileged computer(s) [Required: sessions]

BloodHound MCP_tool://find_allshortestpaths_with_dangerous_rights_to_adminsdholder

Find allshortestpaths with dangerous rights to AdminSDHolder object

BloodHound MCP_tool://find_allshortestpaths_with_dcsync_to_domain

Find allshortestpaths with DCSync to domain object

BloodHound MCP_tool://find_allshortestpaths_with_shadow_credential_permission

Find allshortestpaths with Shadow Credential permission to principal(s)

BloodHound MCP_tool://list_all_tenancy

List all Tenancy (Required: azurehound)

BloodHound MCP_tool://list_all_ad_principals_with_edges_to_azure_principals

[WIP] List all AD principal(s) with edge(s) to Azure principal(s) (Required: azurehound)

BloodHound MCP_tool://list_all_principals_with_privileged_access_to_azure_tenancy

[WIP] List all principal(s) with privileged access to Azure Tenancy (Required: azurehound)

BloodHound MCP_tool://route_principals_to_azure_applications_and_service_principals

[WIP] Route all principal(s) that have control permissions to Azure Application(s) running as Azure Service Principals (AzSP), and route from privileged ASP to Azure Tenancy (Required: azurehound)

BloodHound MCP_tool://route_user_principals_to_azure_service_principals

[WIP] Route all user principal(s) that have control permissions to Azure Service Principals (AzSP), and route from AzSP to principal(s) (Required: azurehound)

BloodHound MCP_tool://route_azure_users_with_dangerous_rights_to_users

[WIP] Route from Azure User principal(s) that have dangerous rights to Azure User and User principal(s) (Required: azurehound)

BloodHound MCP_tool://route_principals_to_azure_vm

[WIP] Route from principal(s) to Azure VM (Required: azurehound)

BloodHound MCP_tool://route_principals_to_global_administrators

[WIP] Route from principal(s) to principal(s) with Global Administrator permissions (Required: azurehound)

Azure Resource Graph MCP Server_query-resources

Retrieves resources and their details from Azure Resource Graph. Use this tool to search, filter, and analyze Azure resources across subscriptions. It supports Kusto Query Language (KQL) for complex queries to find resources by type, location, tags, or properties. Useful for infrastructure auditing, resource inventory, compliance checking, and understanding your Azure environment's current state.

Seoul Public Data MCP Server_KoreaSeoulSubwayStatus
.

YYYYMMDD , . , "" "" . "1", "2" .

JSON , : list_total_count: RESULT.CODE: RESULT.MESSAGE: row: : USE_YMD: SBWY_ROUT_LN_NM: SBWY_STNS_NM: GTON_TNOPE: GTOFF_TNOPE: REG_YMDT:
Seoul Public Data MCP Server_CulturalEventInfo
. .

, , , , , , , .

JSON , : list_total_count: RESULT.CODE: RESULT.MESSAGE: row: : CODENAME: GUNAME: TITLE: / DATE: / PLACE: ORG_NAME: USE_TRGT: USE_FEE: PLAYER: PROGRAM: ETC_DESC: ORG_LINK: MAIN_IMG: RGSTDATE: TICKET: / STRTDATE: END_DATE: THEMECODE: LOT: LAT: IS_FREE: HMPG_ADDR: URL
Instagram Video Downloader MCP Server_download

Instagram downloader

GitHub Action Trigger MCP Server_get_github_actions

Get available GitHub Actions for a repository

GitHub Action Trigger MCP Server_get_github_action

Get detailed information about a specific GitHub Action, including inputs and their requirements

GitHub Action Trigger MCP Server_trigger_github_action

Trigger a GitHub workflow dispatch event with custom inputs

GitHub Action Trigger MCP Server_get_github_release

Get the latest 2 releases from a GitHub repository

MCP Gemini Server_exampleTool

An example tool that takes a name and returns a greeting message. Demonstrates the basic structure of an MCP tool using Zod for parameter definition.

MCP Gemini Server_gemini_generateContent

Generates non-streaming text content using a specified Google Gemini model. This tool takes a text prompt and returns the complete generated response from the model. It's suitable for single-turn generation tasks where the full response is needed at once. Optional parameters allow control over generation (temperature, max tokens, etc.) and safety settings.

MCP Gemini Server_gemini_generateContentStream

Generates text content as a stream using a specified Google Gemini model. This tool takes a text prompt and streams back chunks of the generated response as they become available. It's suitable for interactive use cases or handling long responses. Optional parameters allow control over generation and safety settings.

MCP Gemini Server_gemini_functionCall

Generates content using a specified Google Gemini model, enabling the model to request execution of predefined functions. This tool accepts function declarations and returns either the standard text response OR the details of a function call requested by the model. NOTE: This tool only returns the request for a function call; it does not execute the function itself.

MCP Gemini Server_gemini_startChat

Initiates a new stateful chat session with a specified Gemini model. Returns a unique sessionId to be used in subsequent chat messages. Optionally accepts initial conversation history and session-wide generation/safety configurations.

MCP Gemini Server_gemini_sendMessage

Sends a message to an existing Gemini chat session, identified by its sessionId. Returns the model's response, which might include text or a function call request.

MCP Gemini Server_gemini_sendFunctionResult

Sends the result(s) of function execution(s) back to an existing Gemini chat session, identified by its sessionId. Returns the model's subsequent response.

MCP Gemini Server_gemini_uploadFile

Uploads a file (specified by a local path) to be used with the Gemini API. NOTE: This API is not supported on Vertex AI clients. It only works with Google AI Studio API keys. Returns metadata about the uploaded file, including its unique name and URI.

MCP Gemini Server_gemini_listFiles

Lists files previously uploaded to the Gemini API. Supports pagination to handle large numbers of files. NOTE: This API is not supported on Vertex AI clients. It only works with Google AI Studio API keys. Returns a list of file metadata objects and potentially a token for the next page.

MCP Gemini Server_gemini_getFile

Retrieves metadata for a specific file previously uploaded to the Gemini API. NOTE: This API is not supported on Vertex AI clients. It only works with Google AI Studio API keys. Requires the unique file name (e.g., 'files/abc123xyz').

MCP Gemini Server_gemini_deleteFile

Deletes a specific file previously uploaded to the Gemini API. NOTE: This API is not supported on Vertex AI clients. It only works with Google AI Studio API keys. Requires the unique file name (e.g., 'files/abc123xyz'). Returns a success confirmation.

MCP Gemini Server_gemini_createCache

Creates a cached content resource for a compatible Gemini model. Caching can reduce latency and costs for prompts that are reused often. NOTE: Caching is only supported for specific models (e.g., gemini-1.5-flash, gemini-1.5-pro). Returns metadata about the created cache.

MCP Gemini Server_gemini_listCaches

Lists cached content resources available for the project. Supports pagination. Returns a list of cache metadata objects and potentially a token for the next page.

MCP Gemini Server_gemini_getCache

Retrieves metadata for a specific cached content resource. Requires the unique cache name (e.g., 'cachedContents/abc123xyz').

MCP Gemini Server_gemini_updateCache

Updates metadata (TTL and/or displayName) for a specific cached content resource. Requires the unique cache name (e.g., 'cachedContents/abc123xyz'). Returns the updated cache metadata.

MCP Gemini Server_gemini_deleteCache

Deletes a specific cached content resource. Requires the unique cache name (e.g., 'cachedContents/abc123xyz'). Returns a success confirmation.

MindManager MCP Server_get_mindmap
Retrieves the current mind map structure from MindManager. Args: mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'. turbo_mode (bool): Enable turbo mode (text only). Defaults to False. Returns: Dict[str, Any]: Serialized mind map structure or error dictionary.
MindManager MCP Server_get_selection
Retrieves the currently selected topics in MindManager. Args: mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'. turbo_mode (bool): Enable turbo mode (text only). Defaults to False. Returns: Union[List[Dict[str, Any]], Dict[str, str]]: List of serialized selected topics or error dictionary.
MindManager MCP Server_get_library_folder
Gets the path to the MindManager library folder. Returns: Union[str, Dict[str, str]]: The library folder path or error dictionary.
MindManager MCP Server_get_mindmanager_version
Gets the version of the MindManager application. Returns: Union[str, Dict[str, str]]: The version of the MindManager application or error dictionary.
MindManager MCP Server_get_grounding_information
Extracts grounding information (central topic, selected subtopics) from the mindmap. Args: mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'. turbo_mode (bool): Enable turbo mode (text only). Defaults to False. Returns: Union[List[str], Dict[str, str]]: A list containing [top_most_topic, subtopics_string] or error dictionary.
MindManager MCP Server_serialize_current_mindmap_to_mermaid
Serializes the currently loaded mindmap to Mermaid format. Args: id_only (bool): If True, only include IDs without detailed attributes. Defaults to False. mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'. turbo_mode (bool): Enable turbo mode (text only). Defaults to False. Returns: Union[str, Dict[str, str]]: Mermaid formatted string or error dictionary.
MindManager MCP Server_serialize_current_mindmap_to_markdown
Serializes the currently loaded mindmap to Markdown format. Args: include_notes (bool): If True, include notes in the serialization. Defaults to True. mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'. turbo_mode (bool): Enable turbo mode (text only). Defaults to False. Returns: Union[str, Dict[str, str]]: Markdown formatted string or error dictionary.
MindManager MCP Server_serialize_current_mindmap_to_json
Serializes the currently loaded mindmap to a detailed JSON object with ID mapping. Args: ignore_rtf (bool): Whether to ignore RTF content. Defaults to True. mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'. turbo_mode (bool): Enable turbo mode (text only). Defaults to False. Returns: Union[Dict[str, Any], Dict[str, str]]: JSON serializable dictionary or error dictionary.
MindManager MCP Server_get_versions
Get the versions of the MindManager Automation MCP Server components. Returns: Dict[str, str]: A dictionary containing the versions of the components.
MIDI File MCP_get_midi_info

Get midi file info

MIDI File MCP_set_tempo

Set tempo for midi file

MIDI File MCP_get_tracks_info

Get tracks info from midi file

MIDI File MCP_get_track_info_by_index

Get track info from midi file by track index. name, instrument, channel, endOfTrackTicks, duration, durationTicks, noteCount

MIDI File MCP_get_notes_by_index

Get notes from midi file by track index

MIDI File MCP_get_pitchbends_by_index

Get pitchbends from midi file by track index

MIDI File MCP_get_controlchanges_by_index

Get controlchanges from midi file by track index

MIDI File MCP_add_notes_by_index

Add notes to midi file by track index

MIDI File MCP_add_controlchanges_by_index

Add controlchanges to midi file by track index

MIDI File MCP_add_pitchbends_by_index

Add pitchbends to midi file by track index

MIDI File MCP_add_track

Add a new track to midi file and return the new track info

peacock-mcp_fetch-peacock-docs

Fetches the Peacock for VS Code extension docs from its GitHub repository and answers questions based on the documentation

Gong MCP Server_list_calls

List Gong calls with optional date range filtering. Returns call details including ID, title, start/end times, participants, and duration.

Gong MCP Server_retrieve_transcripts

Retrieve transcripts for specified call IDs. Returns detailed transcripts including speaker IDs, topics, and timestamped sentences.

memento-mcp_read_graph

Read the entire Memento MCP knowledge graph memory system

memento-mcp_get_entity_embedding

Get the vector embedding for a specific entity from your Memento MCP knowledge graph memory

memento-mcp_search_nodes

Search for nodes in your Memento MCP knowledge graph memory based on a query

memento-mcp_open_nodes

Open specific nodes in your Memento MCP knowledge graph memory by their names

memento-mcp_semantic_search

Search for entities semantically using vector embeddings and similarity in your Memento MCP knowledge graph memory

memento-mcp_create_entities

Create multiple new entities in your Memento MCP knowledge graph memory system

memento-mcp_create_relations

Create multiple new relations between entities in your Memento MCP knowledge graph memory. Relations should be in active voice

memento-mcp_add_observations

Add new observations to existing entities in your Memento MCP knowledge graph memory

memento-mcp_delete_entities

Delete multiple entities and their associated relations from your Memento MCP knowledge graph memory

memento-mcp_delete_observations

Delete specific observations from entities in your Memento MCP knowledge graph memory

memento-mcp_delete_relations

Delete multiple relations from your Memento MCP knowledge graph memory

memento-mcp_get_relation

Get a specific relation with its enhanced properties from your Memento MCP knowledge graph memory

memento-mcp_update_relation

Update an existing relation with enhanced properties in your Memento MCP knowledge graph memory

memento-mcp_get_entity_history

Get the version history of an entity from your Memento MCP knowledge graph memory

memento-mcp_get_relation_history

Get the version history of a relation from your Memento MCP knowledge graph memory

memento-mcp_get_graph_at_time

Get your Memento MCP knowledge graph memory as it existed at a specific point in time

memento-mcp_get_decayed_graph

Get your Memento MCP knowledge graph memory with confidence values decayed based on time

memento-mcp_force_generate_embedding

Forcibly generate and store an embedding for an entity in your Memento MCP knowledge graph memory

memento-mcp_debug_embedding_config

Debug tool to check embedding configuration and status of your Memento MCP knowledge graph memory system

memento-mcp_diagnose_vector_search

Diagnostic tool to directly query Neo4j database for entity embeddings, bypassing application abstractions

mmnt-mcp-server_mmnt_search

Search in Mamont search engine

mmnt-mcp-server_mmnt_cache

Extract page from Mamont cache

Runbook_create_runbook-
Runbook_delete_runbook-
mcp-n8n-builder_list_available_nodes

Lists all available nodes in the n8n instance. Use this tool BEFORE creating or updating workflows to ensure you only use valid node types. This helps prevent errors caused by using node types that do not exist in the current n8n instance.

mcp-n8n-builder_list_workflows

Lists all workflows from n8n with their basic information including ID, name, status, creation date, and tags. Use this tool to get an overview of available workflows before performing operations on specific workflows. Results can be filtered by active status, tags, or name.

mcp-n8n-builder_create_workflow

Creates a new workflow in n8n with specified nodes and connections. Note that only workflows with automatic trigger nodes (schedule, webhook, etc.) can be activated - workflows with only manual triggers cannot be activated. Returns the created workflow with its assigned ID.

mcp-n8n-builder_get_workflow

Retrieves complete details of a specific workflow by its ID, including all nodes, connections, settings, and metadata. Use this tool when you need to examine a workflow's structure before updating it or to understand how it works.

mcp-n8n-builder_update_workflow

Updates an existing workflow with new configuration. Typically used after retrieving a workflow with get_workflow, modifying its structure, and then saving the changes. The entire workflow structure must be provided, not just the parts being changed.

mcp-n8n-builder_delete_workflow

Permanently deletes a workflow by its ID. This action cannot be undone, so use with caution. Consider deactivating workflows instead if you might need them again later.

mcp-n8n-builder_activate_workflow

Activates a workflow by its ID, enabling it to run automatically based on its trigger (schedule, webhook, etc.). Note that only workflows with automatic trigger nodes can be activated - workflows with only manual triggers cannot be activated.

mcp-n8n-builder_deactivate_workflow

Deactivates a workflow by its ID, preventing it from running automatically. The workflow will still exist and can be manually executed or reactivated later. Use this instead of deleting workflows that you might need again.

mcp-n8n-builder_list_executions

Lists workflow execution history with details on success/failure status, duration, and timestamps. Use this tool to monitor workflow performance, troubleshoot issues, or verify that workflows are running as expected. Results can be filtered by workflow ID, status, and limited to a specific number.

mcp-n8n-builder_get_execution

Retrieves detailed information about a specific workflow execution, including execution time, status, and optionally the full data processed at each step. Particularly useful for debugging failed workflows or understanding data transformations between nodes.

test-1_compress_local_image

Compress a local image file

test-1_compress_remote_image

Compress a remote image file by giving the URL of the image

test-1_resize_image

Resize an image file

mcp-openvision_image_analysis
Analyze an image using OpenRouter's vision capabilities. This tool allows you to send an image to OpenRouter's vision models for analysis. You provide a query to guide the analysis and can optionally customize the system prompt for more control over the model's behavior. Args: image: The image as a base64-encoded string, URL, or local file path query: Text prompt to guide the image analysis. For best results, provide context about why you're analyzing the image and what specific information you need. Including details about your purpose and required focus areas leads to more relevant and useful responses. system_prompt: Instructions for the model defining its role and behavior model: The vision model to use (defaults to the value set by OPENROUTER_DEFAULT_MODEL) max_tokens: Maximum number of tokens in the response (100-4000) temperature: Temperature parameter for generation (0.0-1.0) top_p: Optional nucleus sampling parameter (0.0-1.0) presence_penalty: Optional penalty for new tokens based on presence in text so far (0.0-2.0) frequency_penalty: Optional penalty for new tokens based on frequency in text so far (0.0-2.0) project_root: Optional root directory to resolve relative image paths against Returns: The analysis result as text Examples: Basic usage with a file path: image_analysis(image="path/to/image.jpg", query="Describe this image in detail") Basic usage with an image URL: image_analysis(image="https://example.com/image.jpg", query="Describe this image in detail") Basic usage with a relative path and project root: image_analysis(image="examples/image.jpg", project_root="/path/to/project", query="Describe this image in detail") Usage with a detailed contextual query: image_analysis( image="path/to/image.jpg", query="Analyze this product packaging design for a fitness supplement. Identify all nutritional claims, certifications, and health icons. Assess the visual hierarchy and how the key selling points are communicated. This is for a competitive analysis project." ) Usage with custom system prompt: image_analysis( image="path/to/image.jpg", query="What objects can you see in this image?", system_prompt="You are an expert at identifying objects in images. Focus on listing all visible objects." )
PlayFab MCP Server_search_items

PlayFab search items

PlayFab MCP Server_get_all_segments

PlayFab get all segments

PlayFab MCP Server_get_all_players

PlayFab get all players

TianGong-LCA-MCP Server_Weaviate Hybrid Search with Extension

Hybrid search in Weaviate with context extension

TianGong-LCA-MCP Server_Search_ESG_Tool

Perform search on ESG database.

Dynamics 365 MCP Server_get-user-info

Get user info from Dynamics 365

Dynamics 365 MCP Server_fetch-accounts

Fetch accounts from Dynamics 365

Dynamics 365 MCP Server_get-associated-opportunities

Fetch opportunities for a given account from Dynamics 365

Dynamics 365 MCP Server_create-account

Create a new account in Dynamics 365

Dynamics 365 MCP Server_update-account

Update an existing account in Dynamics 365

mcp-svstudio_list_tracks

List all tracks in the current project

mcp-svstudio_get_track_notes

Get all notes in a specific track

mcp-svstudio_add_notes

Add one or more notes to a track

mcp-svstudio_add_track

Add a new track to the project

mcp-svstudio_get_project_info

Get information about the current Synthesizer V Studio project

mcp-svstudio_edit_notes

Edit one or more notes

mcp-yeoman_get_ticker_info

Retrieve information about a specific stock symbol using Yahoo Finance API.

mcp-yeoman_get_ticker_news

Fetches news articles for a given stock ticker symbol.

mcp-yeoman_search_quote

Search for quotes using a query string.

mcp-yeoman_search_news

Search for news articles using a query string.

mcp-yeoman_get_top_etfs

Retrieve the top ETFs in a specific sector.

mcp-yeoman_get_top_mutual_funds

Retrieve the top mutual funds in a specific sector.

mcp-yeoman_get_top_companies

Retrieve the top companies in a specific sector.

mcp-yeoman_get_top_growth_companies

Retrieve the top growth companies in a specific sector.

mcp-yeoman_get_top_performing_companies

Retrieve the top performing companies in a specific sector.

mcp-yeoman_analyze_sentiment

You are a sentiment analysis tool. Based on the provided rationale, analyze the sentiment for the given stock symbol. Please ensure that your analysis is objective and unbiased.

Return the result in the following formatted output.
Source Map Parser MCP Server_operating_guide

Parse Error Stack Trace

This tool allows you to parse error stack traces by mapping them to the corresponding source code locations using source maps. It is particularly useful for debugging production errors where the stack trace points to minified or obfuscated code.

Source Map Parser MCP Server_parse_stack

Parse Error Stack Trace

This tool allows you to parse error stack traces by providing the following:

  • A downloadable source map URL.
  • The line and column numbers from the stack trace.

The tool will map the provided stack trace information to the corresponding source code location using the source map. It also supports fetching additional context lines around the error location for better debugging.

Parameters:

  • stacks: An array of stack trace objects, each containing:
    • line: The line number in the stack trace.
    • column: The column number in the stack trace.
    • sourceMapUrl: The URL of the source map file corresponding to the stack trace.
  • ctxOffset (optional): The number of additional context lines to include before and after the error location in the source code. Defaults to 5.

Returns:

  • A JSON object containing the parsed stack trace information, including the mapped source code location and context lines.
  • If parsing fails, an error message will be returned for the corresponding stack trace.
DefectDojo MCP Server_update_finding_status

Update the status of a finding (Active, Verified, False Positive, Mitigated, Inactive)

DefectDojo MCP Server_add_finding_note

Add a note to a finding

DefectDojo MCP Server_get_findings

Get findings with filtering options and pagination support

DefectDojo MCP Server_search_findings

Search for findings using a text query with pagination support

DefectDojo MCP Server_create_finding

Create a new finding

DefectDojo MCP Server_list_products

List all products with optional filtering and pagination support

DefectDojo MCP Server_list_engagements

List engagements with optional filtering and pagination support

DefectDojo MCP Server_get_engagement

Get a specific engagement by ID

DefectDojo MCP Server_create_engagement

Create a new engagement

DefectDojo MCP Server_update_engagement

Update an existing engagement

DefectDojo MCP Server_close_engagement

Close an engagement

Asset Price MCP Server_get_asset_price

Retrieves current pricing information for various assets including precious metals and cryptocurrencies

Ankr API MCP Server_get_token_balances_on_network

Gets all token balances for a given address on a specific network

Ableton Copilot MCP_crop_clip

Crops the clip. The region that is cropped depends on whether the clip is looped or not. If looped, the region outside of the loop is removed. If not looped, the region outside the start and end markers is removed.

Ableton Copilot MCP_duplicate_clip_loop

Makes the loop twice as long and duplicates notes and envelopes. Duplicates the clip start/end range if the clip is not looped.

Ableton Copilot MCP_get_detail_clip

Get detail clip/piano roll clip

Ableton Copilot MCP_get_clip_info_by_id

Get clip info by clip id

Ableton Copilot MCP_get_all_notes_by_clipid

Get clip all notes by clip id

Ableton Copilot MCP_remove_clip_all_notes

Remove clip all notes by clip id

Ableton Copilot MCP_add_notes_to_clip

Add notes to clip by clip id

Ableton Copilot MCP_replace_all_notes_to_clip

Replace clip all notes by clip id

Ableton Copilot MCP_set_clip_property

set clip property

Ableton Copilot MCP_duplicate_clip_region

Duplicates the notes in the specified region to the destination_time. Only notes of the specified pitch are duplicated if pitch is not -1. If the transposition_amount is not 0, the notes in the region will be transposed by the transposition_amount of semitones. Raises an error on audio clips..

Ableton Copilot MCP_get_song_info

get song basic info, include tempo, time signature, root_note(begin from 0, C..B), scale name, song length

Ableton Copilot MCP_get_all_tracks

get all tracks

Ableton Copilot MCP_get_tracks_count

get midi + audio tracks count

Ableton Copilot MCP_create_track

create track and return raw track

Ableton Copilot MCP_delete_track

delete track by index

Ableton Copilot MCP_duplicate_track

duplicate midi or audio track by index

Ableton Copilot MCP_record_by_time_range

Opens Ableton's audio record button and starts playback from start_time to end_time. Before recording, please: ENSURE: 1. Set the recording track to record mode 2. Set the recording track's input routing to Resample or a specific audio track/input routing 3. After recording, disable the track's record mode

Ableton Copilot MCP_get_clips_by_track_id

get all clip by track id

Ableton Copilot MCP_get_track_info_by_id

get track info by id

Ableton Copilot MCP_create_empty_midi_clip

create empty midi clip on track

Ableton Copilot MCP_set_track_property

set track property

Ableton Copilot MCP_duplicate_clip_to_track

duplicate clip to track

Ableton Copilot MCP_get_track_available_input_routings

get track available input routings

Magic Component Platform_21st_magic_component_builder

"Use this tool when the user requests a new UI componente.g., mentions /ui, /21 /21st, or asks for a button, input, dialog, table, form, banner, card, or other React component. This tool ONLY returns the text snippet for that UI component. After calling this tool, you must edit or add files to integrate the snippet into the codebase."

Magic Component Platform_logo_search

Search and return logos in specified format (JSX, TSX, SVG). Supports single and multiple logo searches with category filtering. Can return logos in different themes (light/dark) if available.

When to use this tool:

  1. When user types "/logo" command (e.g., "/logo GitHub")
  2. When user asks to add a company logo that's not in the local project

Example queries:

  • Single company: ["discord"]
  • Multiple companies: ["discord", "github", "slack"]
  • Specific brand: ["microsoft office"]
  • Command style: "/logo GitHub" -> ["github"]
  • Request style: "Add Discord logo to the project" -> ["discord"]

Format options:

  • TSX: Returns TypeScript React component
  • JSX: Returns JavaScript React component
  • SVG: Returns raw SVG markup

Each result includes:

  • Component name (e.g., DiscordIcon)
  • Component code
  • Import instructions
Magic Component Platform_21st_magic_component_inspiration

"Use this tool when the user wants to see component, get inspiration, or /21st fetch data and previews from 21st.dev. This tool returns the JSON data of matching components without generating new code. This tool ONLY returns the text snippet for that UI component. After calling this tool, you must edit or add files to integrate the snippet into the codebase."

Vibe Coder MCP_research

Performs deep research on a given topic using Perplexity Sonar and enhances the result.

Vibe Coder MCP_generate-rules

Creates project-specific development rules based on product description, user stories, and research.

Vibe Coder MCP_generate-prd

Creates comprehensive product requirements documents based on a product description and research.

Vibe Coder MCP_generate-user-stories

Creates detailed user stories with acceptance criteria based on a product description and research.

Vibe Coder MCP_generate-task-list

Creates structured development task lists with dependencies based on product description, user stories, and research.

Vibe Coder MCP_generate-fullstack-starter-kit

Generates full-stack project starter kits with custom tech stacks, research-informed recommendations, and setup scripts.

Vibe Coder MCP_generate-code-stub

Generates a code stub (function, class, etc.) in a specified language based on a description. Can optionally use content from a file (relative path) as context.

Vibe Coder MCP_refactor-code

Refactors a given code snippet based on specific instructions, optionally using surrounding file context.

Vibe Coder MCP_generate-git-summary

Retrieves a summary of current Git changes (diff). Can show staged or unstaged changes.

Vibe Coder MCP_analyze-dependencies

Analyzes dependency manifest files (currently supports package.json) to list project dependencies.

Vibe Coder MCP_process-request

Processes natural language requests, determines the best tool using semantic matching and fallbacks, and either asks for confirmation or executes the tool directly.

SiYuan Note MCP Server_executeCommand-
SiYuan Note MCP Server_queryCommands-
SiYuan Note MCP Server_help-
CMR Model Context Protocol_get_datasets

Get a list of datasets form CMR based on keywords.

Args: startdate: (Optional) Start date of search request (like "2002" or "2022-03-22") stopdate: (Optional) Stop date of search request (like "2002" or "2022-03-22") daac: the daac to search, e.g. NSIDC or PODAAC keywords: A list of keyword arguments to search collections for.
AWS Nova Canvas MCP Server_text_to_image
Generate an image from a text prompt. After generation, you can use the show_image tool to view the thumbnail. Args: prompt: Text prompt for generating an image (maximum 1024 characters) negative_prompt: Text prompt for excluding attributes from generation (maximum 1024 characters) height: Image height (pixels) width: Image width (pixels) num_images: Number of images to generate (maximum 4) cfg_scale: Image matching degree for the prompt (1-20) seed: Seed value for image generation open_browser: Whether to open the image in the browser after generation Returns: Dict: Dictionary containing the file path of the generated image and the thumbnail image
AWS Nova Canvas MCP Server_inpainting
Inpaint a specific part of an image using a text mask prompt. Args: image_path: File path of the original image prompt: Text prompt for the area to be inpainted mask_prompt: Text prompt for specifying the area to be masked (e.g., "window", "car") negative_prompt: Text prompt for excluding attributes from generation height: Output image height (pixels) width: Output image width (pixels) cfg_scale: Image matching degree for the prompt (1-20) open_browser: Whether to open the image in the browser after generation Returns: Dict: Dictionary containing the file path of the inpainted image
AWS Nova Canvas MCP Server_outpainting
Expand the image to create an outpainting. Args: image_path: File path of the original image mask_image_path: File path of the mask image prompt: Text describing the content to be generated in the outpainting area negative_prompt: Text specifying attributes to exclude from generation outpainting_mode: Outpainting mode (DEFAULT or PRECISE) height: Output image height (pixels) width: Output image width (pixels) cfg_scale: Prompt matching degree (1-20) Returns: Dict: Dictionary containing the file path of the outpainted image
AWS Nova Canvas MCP Server_image_variation
Generate a new variation of the input image while maintaining its content. Args: image_paths: List of file paths of the original images (1-5) prompt: Text for generating a variation image (optional) negative_prompt: Text specifying attributes to exclude from generation similarity_strength: Similarity between the original image and the generated image (0.2-1.0) height: Output image height (pixels) width: Output image width (pixels) cfg_scale: Prompt matching degree (1-20) Returns: Dict: Dictionary containing the file path of the variation image
AWS Nova Canvas MCP Server_image_conditioning
Generate an image that follows the layout and composition of a reference image. Args: image_path: File path of the reference image prompt: Text describing the image to be generated negative_prompt: Text specifying attributes to exclude from generation control_mode: Control mode (CANNY_EDGE, etc.) height: Output image height (pixels) width: Output image width (pixels) cfg_scale: Prompt matching degree (1-20) Returns: Dict: Dictionary containing the file path of the generated image
AWS Nova Canvas MCP Server_color_guided_generation
Generate an image using a specified color palette. Args: prompt: Text describing the image to be generated colors: List of color codes (1-10 hex color codes, e.g., "#ff8080") reference_image_path: File path of the reference image (optional) negative_prompt: Text specifying attributes to exclude from generation height: Output image height (pixels) width: Output image width (pixels) cfg_scale: Prompt matching degree (1-20) ctx: MCP context Returns: Dict: Dictionary containing the file path of the generated image
AWS Nova Canvas MCP Server_background_removal
Remove the background of an image automatically. Args: image_path: File path of the original image ctx: MCP context Returns: Dict: Dictionary containing the file path of the image with the background removed
AWS Nova Canvas MCP Server_show_image
Create a thumbnail of the image and return it. The maximum size is 1048578. Supports URLs or local file paths. Args: image_path: Image URL or local file path width: Output image width (pixels) height: Output image height (pixels) Returns: Image: Thumbnail image
Search Intent MCP_search_intent_analysis

A tool for analyzing search intent and user behavior.

Features:

  • Analyze search query intent
  • Identify relevant topic categories
  • Provide search suggestions
  • Offer reference links

Examples: "iphone 15" Product research/purchase intent "python tutorial" Learning intent

Response format:

  • query: Original search term
  • intent: Search intention
  • categories: Related categories
  • suggestions: Related search terms
  • references: Reference links
G-Search MCP_search

Search on Google for multiple keywords and return the results

Google Patents MCP Server_search_patents

Searches Google Patents using SerpApi. Allows filtering by date, inventor, assignee, country, language, status, type, and sorting.

Database Tools for Claude AI_mysql

Execute a query in MySQL

MCP Log Reader_read_mcp_logs

Read MCP logs from the standard location

MCP Calculate Server_calculate_expression

calculate mathematical expressions using the sympify function from sympy, parse and compute the input mathematical expression string, supports direct calls to SymPy functions (automatically recognizes x, y, z as symbolic variables) Parameters: expression (str): Mathematical expression, e.g., "223 - 344 * 6" or "sin(pi/2) + log(10)".Replace special symbols with approximate values, e.g., pi 3.1415" Example expressions: "2 + 3*5" # Basic arithmetic 17 "expand((x + 1)2)" # Expand x + 2x + 1 "diff(sin(x), x)" # Derivative cos(x) "integrate(exp(x), (x, 0, 1))" # Definite integral E - 1 "solve(x2 - 4, x)" # Solve equation [-2, 2] "limit(tan(x)/x, x, 0)" # Limit 1 "Sum(k, (k, 1, 10)).doit()" # Summation 55 "Matrix([[1, 2], [3, 4]]).inv()" # Matrix inverse [[-2, 1], [3/2, -1/2]] "simplify((x2 - 1)/(x + 1))" # Simplify x - 1 "factor(x2 - 2*x - 15)" # Factorize (x - 5)(x + 3) "series(cos(x), x, 0, 4)" # Taylor series 1 - x/2 + x/24 + O(x) "integrate(exp(-x*2)*sin(x), (x, -oo, oo))" # Complex integral "solve([x**2 + y*2 - 1, x + y - 1], [x, y])" # Solve system of equations "Matrix([[1, 2, 3], [4, 5, 6], [7, 8, 9]]).eigenvals()" # Matrix eigenvalues Returns: str: Calculation result. If the expression cannot be parsed or computed, returns an error message (str).

Baidu Search MCP Server_search
Search Baidu and return formatted results. Args: query: The search query string max_results: Maximum number of results to return (default: 6) deep_mode: Deep search the web content (default: False) ctx: MCP context for logging
Caiyun Weather MCP Server_get_weather_by_location-
Caiyun Weather MCP Server_get_weather_by_address-
Caiyun Weather MCP Server_get_realtime_weather-
Caiyun Weather MCP Server_get_minutely_forecast-
Caiyun Weather MCP Server_get_hourly_forecast-
Caiyun Weather MCP Server_get_daily_forecast-
Caiyun Weather MCP Server_get_weather_alert-
Yahoo Finance MCP Server_get_ticker_info

Retrieve information about a specific stock symbol using Yahoo Finance API.

Yahoo Finance MCP Server_get_ticker_news

Fetches news articles for a given stock ticker symbol.

Yahoo Finance MCP Server_search_quote

Search for quotes using a query string.

Yahoo Finance MCP Server_search_news

Search for news articles using a query string.

Yahoo Finance MCP Server_get_top_etfs

Retrieve the top ETFs in a specific sector.

Yahoo Finance MCP Server_get_top_mutual_funds

Retrieve the top mutual funds in a specific sector.

Yahoo Finance MCP Server_get_top_companies

Retrieve the top companies in a specific sector.

Yahoo Finance MCP Server_get_top_growth_companies

Retrieve the top growth companies in a specific sector.

Yahoo Finance MCP Server_get_top_performing_companies

Retrieve the top performing companies in a specific sector.

Yahoo Finance MCP Server_analyze_sentiment

You are a sentiment analysis tool. Based on the provided rationale, analyze the sentiment for the given stock symbol. Please ensure that your analysis is objective and unbiased.

Return the result in the following formatted output.
mcp-github-trending_get_github_trending_developers

Get trending developers on github

mcp-github-trending_get_github_trending_repositories

Get trending repositories on github

Freshdesk MCP server_get_ticket_fields

Get ticket fields from Freshdesk.

Freshdesk MCP server_create_ticket_reply

Create a reply to a ticket in Freshdesk.

Freshdesk MCP server_create_ticket_note

Create a note for a ticket in Freshdesk.

Freshdesk MCP server_get_tickets

Get tickets from Freshdesk with pagination support.

Freshdesk MCP server_create_ticket

Create a ticket in Freshdesk

Freshdesk MCP server_update_ticket

Update a ticket in Freshdesk.

Freshdesk MCP server_delete_ticket

Delete a ticket in Freshdesk.

Freshdesk MCP server_get_ticket

Get a ticket in Freshdesk.

Freshdesk MCP server_search_tickets

Search for tickets in Freshdesk.

Freshdesk MCP server_get_ticket_conversation

Get a ticket conversation in Freshdesk.

Freshdesk MCP server_update_ticket_conversation

Update a conversation for a ticket in Freshdesk.

Freshdesk MCP server_get_agents

Get all agents in Freshdesk with pagination support.

Freshdesk MCP server_list_contacts

List all contacts in Freshdesk with pagination support.

Freshdesk MCP server_get_contact

Get a contact in Freshdesk.

Freshdesk MCP server_search_contacts

Search for contacts in Freshdesk.

Freshdesk MCP server_update_contact

Update a contact in Freshdesk.

Freshdesk MCP server_list_canned_responses

List all canned responses in Freshdesk.

Freshdesk MCP server_list_canned_response_folders

List all canned response folders in Freshdesk.

Freshdesk MCP server_list_solution_articles

List all solution articles in Freshdesk.

Freshdesk MCP server_list_solution_folders-
Freshdesk MCP server_list_solution_categories

List all solution categories in Freshdesk.

Freshdesk MCP server_view_agent

View an agent in Freshdesk.

Freshdesk MCP server_create_agent

Create an agent in Freshdesk.

Freshdesk MCP server_update_agent

Update an agent in Freshdesk.

Freshdesk MCP server_search_agents

Search for agents in Freshdesk.

Scrapeless MCP Server_google-search

Fetch Google Search Results

Omi MCP Server_read_omi_memories

Retrieves user memories from Omi with pagination options

Omi MCP Server_create_omi_conversation

Creates a new Omi conversation with text content and metadata

Omi MCP Server_create_omi_memories

Creates Omi memories by extracting from text or using explicit memory objects

Omi MCP Server_read_omi_conversations

Retrieves user conversations from Omi with pagination and filtering options

FFmpeg MCP Server_speed_up

Speed up a video

FFmpeg MCP Server_extract_audio

Extract audio as mp3 from a video

mcp-image-compression_image_compression

Compress an image

AgentMail_getMessage

Get message by ID

AgentMail_listInboxes

List all inboxes

AgentMail_getInbox

Get inbox by ID

AgentMail_createInbox

Create a new inbox

AgentMail_listThreads

List threads by inbox ID

AgentMail_getThread

Get thread by ID

AgentMail_listMessages

List messages

AgentMail_getAttachment

Get attachment by ID

AgentMail_sendMessage

Send a message

AgentMail_replyToMessage

Reply to a message

Kali Linux MCP Server_execute_command

(ping 127.0.0.1)Kali LinuxKali LinuxLinux

Kali Linux MCP Server_start_interactive_command

(mysql -u root -p)Kali LinuxID,close_interactive_commandexecute_command

Kali Linux MCP Server_send_input_to_command

(AI)

Kali Linux MCP Server_get_command_output-
Kali Linux MCP Server_close_interactive_command-
Lara Translate MCP Server_translate

Translate text between languages with support for language detection and context-aware translations.

YouTube MCP Server_search-videos

Search for YouTube videos with advanced filtering options. Supports parameters: - query: Search term (required) - maxResults: Number of results to return (1-50) - channelId: Filter by specific channel - order: Sort by date, rating, viewCount, relevance, title - type: Filter by resource type (video, channel, playlist) - videoDuration: Filter by length (short: <4min, medium: 4-20min, long: >20min) - publishedAfter/publishedBefore: Filter by publish date (ISO format) - videoCaption: Filter by caption availability - videoDefinition: Filter by quality (standard/high) - regionCode: Filter by country (ISO country code)

YouTube MCP Server_get-video-comments

Retrieve comments for a specific YouTube video

YouTube MCP Server_get-video-transcript

Get the transcript/captions for a YouTube video with optional language selection. This tool retrieves the full transcript of a video with timestamped captions. Each caption includes the text and its timestamp in the video. Parameters: videoId (required) - The YouTube video ID; language (optional) - Language code for the transcript (e.g., "en", "ko", "ja"). If not specified, the default language for the video will be used. Returns a text with each caption line preceded by its timestamp.

YouTube MCP Server_get-video-stats

Get statistical information for a specific YouTube video (views, likes, comments, upload date, etc.)

YouTube MCP Server_get-channel-stats

Get statistical information for a specific YouTube channel (subscriber count, total views, video count, etc.)

YouTube MCP Server_compare-videos

Compare statistics for multiple YouTube videos

YouTube MCP Server_get-trending-videos

Retrieve trending videos by region and category. This helps analyze current popular content trends.

YouTube MCP Server_get-video-categories

Retrieve available video categories for a specific region

YouTube MCP Server_analyze-channel-videos

Analyze recent videos from a specific channel to identify performance trends

YouTube MCP Server_enhanced-transcript

Advanced transcript extraction tool with filtering, search, and multi-video capabilities. Provides rich transcript data for detailed analysis and processing. This tool offers multiple advanced features: 1) Extract transcripts from multiple videos in one request; 2) Filter by time ranges to focus on specific parts; 3) Search for specific content within transcripts; 4) Segment transcripts for structural analysis; 5) Format output in different ways (raw, timestamped, merged text); 6) Include video metadata. Parameters: videoIds (required) - Array of YouTube video IDs (up to 5); language (optional) - Language code; format (optional) - Output format ("raw", "timestamped", "merged"); includeMetadata (optional) - Whether to include video details; filters (optional) - Complex filtering options including timeRange, search, and segment.

YouTube MCP Server_get-key-moments

Extract key moments with timestamps from a video transcript for easier navigation and summarization. This tool analyzes the video transcript to identify important segments based on content density and creates a structured output with timestamped key moments. Useful for quickly navigating to important parts of longer videos. Parameters: videoId (required) - The YouTube video ID; maxMoments (optional) - Number of key moments to extract (default: 5, max: 10). Returns a formatted text with key moments and their timestamps, plus the full transcript.

YouTube MCP Server_get-segmented-transcript

Divide a video transcript into segments for easier analysis and navigation. This tool splits the video into equal time segments and extracts the transcript for each segment with proper timestamps. Ideal for analyzing the structure of longer videos or when you need to focus on specific parts of the content. Parameters: videoId (required) - The YouTube video ID; segmentCount (optional) - Number of segments to divide the video into (default: 4, max: 10). Returns a markdown-formatted text with each segment clearly labeled with time ranges and containing the relevant transcript text.

https://github.com/jkingsman/qanon-mcp-server_get_post_by_id_tool
Retrieve a specific post by its ID. Args: post_id: The ID of the post to retrieve
https://github.com/jkingsman/qanon-mcp-server_search_posts
Search for posts/drops containing a specific keyword or phrase. Args: query: The keyword or phrase to search for limit: Maximum number of results to return (default: 10)
https://github.com/jkingsman/qanon-mcp-server_get_posts_by_date
Get posts/drops within a specific date range. Args: start_date: Start date in YYYY-MM-DD format end_date: End date in YYYY-MM-DD format (defaults to start_date if not provided) limit: Maximum number of results to return (default: 10)
https://github.com/jkingsman/qanon-mcp-server_get_posts_by_author_id
Get posts/drops by a specific author ID. Args: author_id: The author ID to search for limit: Maximum number of results to return (default: 10)
https://github.com/jkingsman/qanon-mcp-server_analyze_post
Get detailed analysis of a specific post/drop including references and context. Args: post_id: The ID of the post to analyze
https://github.com/jkingsman/qanon-mcp-server_get_timeline_summary
Get a timeline summary of posts/drops, optionally within a date range. Args: start_date: Optional start date in YYYY-MM-DD format end_date: Optional end date in YYYY-MM-DD format
https://github.com/jkingsman/qanon-mcp-server_word_cloud_by_post_ids
Generate a word cloud analysis showing the most common words used in posts within a specified ID range. Args: start_id: Starting post ID end_id: Ending post ID min_word_length: Minimum length of words to include (default: 3) max_words: Maximum number of words to return (default: 100)
https://github.com/jkingsman/qanon-mcp-server_word_cloud_by_date_range
Generate a word cloud analysis showing the most common words used in posts within a specified date range. Args: start_date: Start date in YYYY-MM-DD format end_date: End date in YYYY-MM-DD format min_word_length: Minimum length of words to include (default: 3) max_words: Maximum number of words to return (default: 100)
Marvel MCP_get_characters

Fetch Marvel characters with optional filters

Marvel MCP_get_character_by_id

Fetch a Marvel character by ID

Marvel MCP_get_comics_for_character

Fetch Marvel comics filtered by character ID and optional filters

Marvel MCP_get_comics

Fetches lists of Marvel comics with optional filters

Marvel MCP_get_comic_by_id

Fetch a single Marvel comic by ID

Marvel MCP_get_characters_for_comic

Fetch Marvel characters for a given comic

Marvel MCP_generate_comics_html

Create an HTML page displaying Marvel comics with their images

mcp-sqlalchemy_podbc_get_schemas

Retrieve and return a list of all schema names from the connected database.

mcp-sqlalchemy_podbc_get_tables

Retrieve and return a list containing information about tables in specified schema, if empty uses connection default

mcp-sqlalchemy_podbc_describe_table

Retrieve and return a dictionary containing the definition of a table, including column names, data types, nullable, autoincrement, primary key, and foreign keys.

mcp-sqlalchemy_podbc_filter_table_names

Retrieve and return a list containing information about tables whose names contain the substring 'q' in the format [{'schema': 'schema_name', 'table': 'table_name'}, {'schema': 'schema_name', 'table': 'table_name'}].

mcp-sqlalchemy_podbc_execute_query

Execute a SQL query and return results in JSONL format.

mcp-sqlalchemy_podbc_execute_query_md

Execute a SQL query and return results in Markdown table format.

mcp-sqlalchemy_podbc_query_database

Execute a SQL query and return results in JSONL format.

mcp-sqlalchemy_podbc_spasql_query

Execute a SPASQL query and return results.

mcp-sqlalchemy_podbc_sparql_query

Execute a SPARQL query and return results.

mcp-sqlalchemy_podbc_virtuoso_support_ai

Tool to use the Virtuoso AI support function

mcp-sqlalchemy_podbc_sparql_func

Call ???.

Windows Command Line MCP Server_list_running_processes

List all running processes on the system. Can be filtered by providing an optional filter string that will match against process names.

Windows Command Line MCP Server_get_system_info

Retrieve system information including OS, hardware, and user details. Can provide basic or full details.

Windows Command Line MCP Server_get_network_info

Retrieve network configuration information including IP addresses, adapters, and DNS settings. Can be filtered to a specific interface.

Windows Command Line MCP Server_get_scheduled_tasks

Retrieve information about scheduled tasks on the system. Can query all tasks or get detailed status of a specific task.

Windows Command Line MCP Server_get_service_info

Retrieve information about Windows services. Can query all services or get detailed status of a specific service.

Windows Command Line MCP Server_list_allowed_commands

List all commands that are allowed to be executed by this server. This helps understand what operations are permitted.

Windows Command Line MCP Server_execute_command

Execute a Windows command and return its output. Only commands in the allowed list can be executed. This tool should be used for running simple commands like 'dir', 'echo', etc.

Windows Command Line MCP Server_execute_powershell

Execute a PowerShell script and return its output. This allows for more complex operations and script execution. PowerShell must be in the allowed commands list.

CCXT MCP Server_cache-stats

Get CCXT cache statistics

CCXT MCP Server_clear-cache

Clear CCXT cache

CCXT MCP Server_set-log-level

Set logging level

CCXT MCP Server_list-exchanges

List all available cryptocurrency exchanges

CCXT MCP Server_get-ticker

Get current ticker information for a trading pair

CCXT MCP Server_batch-get-tickers

Get ticker information for multiple trading pairs at once

CCXT MCP Server_get-orderbook

Get market order book for a trading pair

CCXT MCP Server_get-ohlcv

Get OHLCV candlestick data for a trading pair

CCXT MCP Server_get-trades

Get recent trades for a trading pair

CCXT MCP Server_get-markets

Get all available markets for an exchange

CCXT MCP Server_get-exchange-info

Get exchange information and status

CCXT MCP Server_get-leverage-tiers

Get futures leverage tiers for trading pairs

CCXT MCP Server_get-funding-rates

Get current funding rates for perpetual contracts

CCXT MCP Server_get-market-types

Get market types supported by an exchange

CCXT MCP Server_account-balance

Get your account balance from a crypto exchange

CCXT MCP Server_place-market-order

Place a market order on an exchange

CCXT MCP Server_set-leverage

Set leverage for futures trading

CCXT MCP Server_set-margin-mode

Set margin mode for futures trading

CCXT MCP Server_place-futures-market-order

Place a futures market order

CCXT MCP Server_get-proxy-config

Get the current proxy configuration

CCXT MCP Server_set-proxy-config

Configure proxy settings for all exchanges

CCXT MCP Server_test-proxy-connection

Test the proxy connection with a specified exchange

CCXT MCP Server_clear-exchange-cache

Clear exchange instance cache to apply configuration changes

CCXT MCP Server_set-market-type

Set default market type for all exchanges

MCP Atlassian Server_confluence_search

Search Confluence content using CQL

MCP Atlassian Server_jira_search

Search Jira issues using JQL

Yellhorn MCP_generate_work_plan

Generate a detailed work plan for implementing a task based on the current codebase. Creates a GitHub issue with customizable title and detailed description, labeled with 'yellhorn-mcp'.Note: You should generally just pass the full user task request task verbatim to detailed_description.

Yellhorn MCP_review_work_plan

Review a pull request against the original work plan issue and provide feedback.

MCP OpenAPI Server_refresh-api-catalog

Refresh the API catalog

MCP OpenAPI Server_get-api-catalog

Get the API catalog, the catalog contains metadata about all openapi specifications, their operations and schemas

MCP OpenAPI Server_search-api-operations

Search for operations across specifications

MCP OpenAPI Server_search-api-schemas

Search for schemas across specifications

MCP OpenAPI Server_load-api-operation-by-operationId

Load an operation by operationId

MCP OpenAPI Server_load-api-operation-by-path-and-method

Load an operation by path and method

MCP OpenAPI Server_load-api-schema-by-schemaName

Load a schema by schemaName

CCXT MCP Server_fetchClosedOrders

Fetch all closed orders using a configured account

CCXT MCP Server_listAccounts

List all configured account names

CCXT MCP Server_fetchBalance

Fetch account balance for a configured account

CCXT MCP Server_fetchMarkets

Fetch markets from a cryptocurrency exchange

CCXT MCP Server_fetchTicker

Fetch ticker information for a symbol on an exchange

CCXT MCP Server_fetchTickers

Fetch all tickers from an exchange

CCXT MCP Server_fetchOrderBook

Fetch order book for a symbol on an exchange

CCXT MCP Server_fetchTrades

Fetch recent trades for a symbol on an exchange

CCXT MCP Server_fetchOHLCV

Fetch OHLCV candlestick data for a symbol on an exchange

CCXT MCP Server_createOrder

Create a new order using a configured account

CCXT MCP Server_cancelOrder

Cancel an existing order using a configured account

CCXT MCP Server_fetchOrder

Fetch information about a specific order using a configured account

CCXT MCP Server_fetchOpenOrders

Fetch all open orders using a configured account

CCXT MCP Server_fetchDeposits

Fetch deposit history for a configured account

CCXT MCP Server_fetchWithdrawals

Fetch withdrawal history for a configured account

CCXT MCP Server_fetchMyTrades

Fetch personal trade history for a configured account

CCXT MCP Server_analyzeTradingPerformance

Analyze trading performance for a configured account

CCXT MCP Server_calculateWinRate

Calculate win rate and profit metrics for a configured account

CCXT MCP Server_analyzeConsecutiveProfitLoss

Analyze consecutive winning and losing trades

CCXT MCP Server_analyzePeriodicReturns

Analyze daily and monthly returns for a configured account

mcp-nixos_nixos_search

Search for NixOS packages, options, or programs.

Args: query: The search term type: The type to search (packages, options, or programs) limit: Maximum number of results to return (default: 20) channel: NixOS channel to use (default: unstable) Returns: Results formatted as text
mcp-nixos_nixos_info

Get detailed information about a NixOS package or option.

Args: name: The name of the package or option type: Either "package" or "option" channel: NixOS channel to use (default: unstable) Returns: Detailed information about the package or option
mcp-nixos_nixos_stats

Get statistics about available NixOS packages and options.

Args: channel: NixOS channel to use (default: unstable) Returns: Statistics about packages and options
mcp-nixos_home_manager_search

Search for Home Manager options.

Args: query: The search term limit: Maximum number of results to return (default: 20) Returns: Results formatted as text
mcp-nixos_home_manager_info

Get detailed information about a Home Manager option.

Args: name: The name of the option Returns: Detailed information formatted as text
mcp-nixos_home_manager_stats

Get statistics about Home Manager options.

Returns: Statistics about Home Manager options
mcp-nixos_home_manager_list_options

List all top-level Home Manager option categories.

Returns: Formatted list of top-level option categories and their statistics
mcp-nixos_home_manager_options_by_prefix

Get all Home Manager options under a specific prefix.

Args: option_prefix: The option prefix to search for (e.g., "programs", "programs.git") Returns: Formatted list of options under the given prefix
mcp-nixos_darwin_search-
mcp-nixos_darwin_info-
mcp-nixos_darwin_stats-
mcp-nixos_darwin_list_options-
mcp-nixos_darwin_options_by_prefix-
Linear MCP Server_list_issues

List Linear issues (also called tickets) with filtering by assignee, status, and project. Use this to browse and find issues in your Linear workspace.

Linear MCP Server_get_issue

Get detailed information about a specific Linear issue (also called a ticket), including comments if requested.

Linear MCP Server_list_members

List Linear team members with optional filtering by name. This tool is useful for finding member details including usernames, display names, and emails.

Linear MCP Server_list_projects

List Linear projects with optional filtering by team, name, and archive status. Shows project details including status, lead, progress, and dates.

Linear MCP Server_get_project

Get detailed information about a Linear project including team, lead, issues, and members. Use this to see comprehensive details of a specific project.

Linear MCP Server_list_teams

List Linear teams with details about their members, projects, and issues. Use this to get a high-level view of all teams in your Linear workspace.

Linear MCP Server_add_comment

Add a comment to a specific Linear ticket. This tool is useful for providing feedback, status updates, or additional information on existing tickets.

Linear MCP Server_create_issue

Create a new issue in Linear. This tool is useful for adding new tasks, bugs, or feature requests to your Linear workspace.

Shell Command MCP Server_execute-command

execute-command

This tool executes shell command on bash. Each command execution spawn a new bash process.

MCP-Slicer_list_nodes

List MRML nodes via the Slicer Web Server API.

The filter_type parameter specifies the type of node information to retrieve. Possible values include "names" (node names), "ids" (node IDs), and "properties" (node properties). The default value is "names".

The class_name, name, and id parameters are optional and can be used to further filter nodes. The class_name parameter allows filtering nodes by class name. The name parameter allows filtering nodes by name. The id parameter allows filtering nodes by ID.

Examples:

  • List the names of all nodes: {"tool": "list_nodes", "arguments": {"filter_type": "names"}}
  • List the IDs of nodes of a specific class: {"tool": "list_nodes", "arguments": {"filter_type": "ids", "class_name": "vtkMRMLModelNode"}}
  • List the properties of nodes with a specific name: {"tool": "list_nodes", "arguments": {"filter_type": "properties", "name": "MyModel"}}
  • List nodes with a specific ID: {"tool": "list_nodes", "arguments": {"filter_type": "ids", "id": "vtkMRMLModelNode123"}}

Returns a dictionary containing node information. If filter_type is "names" or "ids", the returned dictionary contains a "nodes" key, whose value is a list containing node names or IDs. Example: {"nodes": ["node1", "node2", ...]} or {"nodes": ["id1", "id2", ...]} If filter_type is "properties", the returned dictionary contains a "nodes" key, whose value is a dictionary containing node properties. Example: {"nodes": {"node1": {"property1": "value1", "property2": "value2"}, ...}} If an error occurs, a dictionary containing an "error" key is returned, whose value is a string describing the error.

MCP-Slicer_execute_python_code

Execute Python code in 3D Slicer.

Parameters: code (str): The Python code to execute.

The code parameter is a string containing the Python code to be executed in 3D Slicer's Python environment. The code should be executable by Python's exec() function. To get return values, the code should assign the result to a variable named __execResult.

Examples:

  • Create a sphere model: {"tool": "execute_python_code", "arguments": {"code": "sphere = slicer.vtkMRMLModelNode(); slicer.mrmlScene.AddNode(sphere); sphere.SetName('MySphere'); __execResult = sphere.GetID()"}}
  • Get the number of nodes in the current scene: {"tool": "execute_python_code", "arguments": {"code": "__execResult = len(slicer.mrmlScene.GetNodes())"}}
  • Calculate 1+1: {"tool": "execute_python_code", "arguments": {"code": "__execResult = 1 + 1"}}

Returns: dict: A dictionary containing the execution result.

If the code execution is successful, the dictionary will contain the following key-value pairs: - "success": True - "message": The result of the code execution. If the code assigns the result to `__execResult`, the value of `__execResult` is returned, otherwise it returns empty. If the code execution fails, the dictionary will contain the following key-value pairs: - "success": False - "message": A string containing an error message indicating the cause of the failure. The error message may come from the Slicer Web Server or the Python interpreter.

Examples:

  • Successful execution: {"success": True, "message": 2} # Assuming the result of 1+1 is 2
  • Successful execution: {"success": True, "message": "vtkMRMLScene1"} # Assuming the created sphere id is vtkMRMLScene1
  • Python execution error: {"success": False, "message": "Server error: name 'slicer' is not defined"}
  • Connection error: {"success": False, "message": "Connection error: ..."}
  • HTTP error: {"success": False, "message": "HTTP Error 404: Not Found"}
Tribal Knowledge Service_track_error
Track an error and its solution in the knowledge base. Args: error_type: Type of error (e.g., ImportError, TypeError) error_message: The error message language: Programming language (e.g., python, javascript) framework: Framework used (e.g., fastapi, react) code_snippet: The code that caused the error task_description: What the user was trying to accomplish solution_description: Brief description of the solution solution_code_fix: Code that fixes the error solution_explanation: Detailed explanation of why the solution works solution_references: List of reference links Returns: The created error record
Tribal Knowledge Service_find_similar_errors
Find errors similar to the given query. Args: query: Text to search for in the knowledge base max_results: Maximum number of results to return Returns: List of similar error records
Tribal Knowledge Service_search_errors
Search for errors in the knowledge base. Args: error_type: Type of error to filter by language: Programming language to filter by framework: Framework to filter by error_message: Error message to search for code_snippet: Code snippet to search for task_description: Task description to search for max_results: Maximum number of results to return Returns: List of matching error records
Tribal Knowledge Service_get_error_by_id
Get an error record by its ID. Args: error_id: UUID of the error record Returns: The error record or None if not found
Tribal Knowledge Service_delete_error
Delete an error record. Args: error_id: UUID of the error record Returns: True if deleted, False if not found
Tribal Knowledge Service_get_api_status
Check the API status. Returns: API status information
WhatsApp MCP Server_send-whatsapp-message

Send a message to a contact on WhatsApp

WhatsApp MCP Server_check-whatsapp-status

Check if WhatsApp is currently running

WhatsApp MCP Server_list-recent-contacts

List recently contacted people on WhatsApp (simplified)

FileScopeMCP_get_file_importance

Get the importance ranking of a specific file

FileScopeMCP_list_saved_trees

List all saved file trees

FileScopeMCP_delete_file_tree

Delete a file tree configuration

FileScopeMCP_create_file_tree

Create or load a file tree configuration

FileScopeMCP_select_file_tree

Select an existing file tree to work with

FileScopeMCP_list_files

List all files in the project with their importance rankings

FileScopeMCP_find_important_files

Find the most important files in the project

FileScopeMCP_get_file_summary

Get the summary of a specific file

FileScopeMCP_set_file_summary

Set the summary of a specific file

FileScopeMCP_read_file_content

Read the content of a specific file

FileScopeMCP_set_file_importance

Manually set the importance ranking of a specific file

FileScopeMCP_recalculate_importance

Recalculate importance values for all files based on dependencies

FileScopeMCP_debug_list_all_files

List all file paths in the current file tree

FileScopeMCP_generate_diagram

Generate a Mermaid diagram for the current file tree

MCP Azure DevOps Server_query_work_items
Query work items using WIQL. Args: query: The WIQL query string top: Maximum number of results to return (default: 30) Returns: Formatted string containing work item details
MCP Azure DevOps Server_get_work_item_basic
Get basic information about a work item. Args: id: The work item ID Returns: Formatted string containing basic work item information
MCP Azure DevOps Server_get_work_item_details
Get detailed information about a work item. Args: id: The work item ID Returns: Formatted string containing comprehensive work item information
MCP Azure DevOps Server_get_work_item_comments
Get all comments for a work item. Args: id: The work item ID project: Optional project name. If not provided, will be determined from the work item. Returns: Formatted string containing all comments on the work item
MCP Azure DevOps Server_get_projects
Get all projects in the organization that the authenticated user has access to. Args: state_filter: Filter on team projects in a specific state (e.g., "WellFormed", "Deleting") top: Maximum number of projects to return Returns: Formatted string containing project information
MCP Azure DevOps Server_get_all_teams
Get a list of all teams in the organization. Args: user_is_member_of: If true, return only teams where the current user is a member. Otherwise return all teams the user has read access to. top: Maximum number of teams to return skip: Number of teams to skip Returns: Formatted string containing team information
MCP Azure DevOps Server_get_team_members
Get a list of members for a specific team. Args: project_id: The name or ID (GUID) of the team project the team belongs to team_id: The name or ID (GUID) of the team top: Maximum number of members to return skip: Number of members to skip Returns: Formatted string containing team members information
MCP Azure DevOps Server_get_team_area_paths
Get the area paths assigned to a team. Args: project_name_or_id: The name or ID of the team project team_name_or_id: The name or ID of the team Returns: Formatted string containing team area path information
MCP Azure DevOps Server_get_team_iterations
Get the iterations assigned to a team. Args: project_name_or_id: The name or ID of the team project team_name_or_id: The name or ID of the team current: If True, return only the current iteration Returns: Formatted string containing team iteration information
DocGen MCP Server_create_documentation

Create documentation from source files using a template

DocGen MCP Server_list_templates

List available documentation templates

DocGen MCP Server_view_document_history

View history of previously generated documents

MCP-Server-Inbox_write_note

Write note to inBox

Weather MCP Server_get-alerts

Get weather alerts for a state

Weather MCP Server_get-forecast

Get weather forecast for a location

AdsPower LocalAPI MCP Server_close-browser

Close the browser

AdsPower LocalAPI MCP Server_create-browser

Create a browser

AdsPower LocalAPI MCP Server_update-browser

Update the browser

AdsPower LocalAPI MCP Server_open-browser

Open the browser

AdsPower LocalAPI MCP Server_delete-browser

Delete the browser

AdsPower LocalAPI MCP Server_get-browser-list

Get the list of browsers

AdsPower LocalAPI MCP Server_get-opened-browser

Get the list of opened browsers

AdsPower LocalAPI MCP Server_move-browser

Move browsers to a group

AdsPower LocalAPI MCP Server_create-group

Create a browser group

AdsPower LocalAPI MCP Server_update-group

Update the browser group

AdsPower LocalAPI MCP Server_get-group-list

Get the list of groups

AdsPower LocalAPI MCP Server_get-application-list

Get the list of applications

React Native Debugger MCP_getConnectedApps

Get the connected apps

React Native Debugger MCP_readConsoleLogsFromApp

Reads console logs from a connected React Native app through the debugger WebSocket

Geekbot MCP_fetch_standups

Fetch standups list from Geekbot

Returns: str: Properly formatted JSON string of standups list
Geekbot MCP_fetch_reports

Fetch reports list from Geekbot

Args: standup_id: int, optional, default is None The standup id to fetch reports for user_id: int, optional, default is None The user id to fetch reports for after: str, optional, default is None The date to fetch reports after in YYYY-MM-DD format before: str, optional, default is None The date to fetch reports before in YYYY-MM-DD format Returns: str: Properly formatted JSON string of reports list
MCP Server Flomo_write_note

Write note to flomo

coindesk-mcp_read_news
Retrieves and extracts the full content of a specific news article from CoinDesk. Fetches the HTML content from the provided URL, processes it to extract structured news information including title, subtitle, author, publication date, and article content. Args: url (str): The complete URL of the CoinDesk news article to retrieve Returns: str: A formatted string containing the article's title, subtitle, author, publication information, and content preview Raises: HTTPStatusError: If the URL request fails Exception: If article parsing encounters errors
coindesk-mcp_recent_news
Retrieves the latest cryptocurrency and blockchain news articles from CoinDesk's RSS feed. Fetches the current RSS feed from CoinDesk, parses it to extract information about recent articles, and returns a formatted list of news items including titles, links, publication timestamps, and summary content. Returns: str: A formatted string containing multiple news entries separated by '---', with each entry showing title, URL, publication time, and summary Raises: HTTPStatusError: If the RSS feed request fails Exception: If RSS parsing encounters errors
mcp-scholar_scholar_search
Args: keywords: count: 5 fuzzy_search: False sort_by: : - "relevance": - "citations": - "date": - "title": year_start: year_end: Returns: Dict:
mcp-scholar_adaptive_search
Args: keywords: count: 5 min_results: 3 sort_by: : - "relevance": - "citations": - "date": - "title": year_start: year_end: Returns: Dict:
mcp-scholar_paper_detail
Args: paper_id: ID Returns: Dict:
mcp-scholar_paper_references
Args: paper_id: ID count: 5 sort_by: : - "relevance": - "citations": - "date": - "title": Returns: Dict:
mcp-scholar_profile_papers
Args: profile_url: URL count: 5 sort_by: : - "relevance": - "citations": - "date": - "title": Returns: Dict:
mcp-scholar_summarize_papers
Args: topic: count: 5 sort_by: : - "relevance": - "citations": - "date": - "title": year_start: year_end: Returns: str: Markdown
mcp-scholar_health_check
Returns: str:
Crunchbase MCP Server_search_companies

Search for companies based on various criteria

Crunchbase MCP Server_get_company_details

Get detailed information about a specific company

Crunchbase MCP Server_get_funding_rounds

Get funding rounds for a specific company

Crunchbase MCP Server_get_acquisitions

Get acquisitions made by or of a specific company

Crunchbase MCP Server_search_people

Search for people based on various criteria

APISIX-MCP_get_plugin_metadata

Get metadata for a specific plugin

APISIX-MCP_create_plugin_config

Create a new plugin config

APISIX-MCP_get_resource

Get resource details by ID or list all resources

APISIX-MCP_delete_resource

Delete a resource by ID

APISIX-MCP_create_route

Create a route

APISIX-MCP_update_route

Update specific attributes of an existing route

APISIX-MCP_create_service

Create a service

APISIX-MCP_update_service

Update specific attributes of an existing service

APISIX-MCP_create_upstream

Create an upstream service with load balancing settings

APISIX-MCP_update_upstream

Update specific attributes of an existing upstream

APISIX-MCP_create_or_update_consumer

Create a consumer, if the consumer already exists, it will be updated

APISIX-MCP_get_credential

Get all credentials or a specific credential for a consumer

APISIX-MCP_create_or_update_credential

Create or update a credential for a consumer

APISIX-MCP_delete_credential

Delete a credential for a consumer

APISIX-MCP_create_ssl

Create an SSL certificate

APISIX-MCP_update_ssl

Update specific attributes of an existing SSL certificate

APISIX-MCP_create_global_rule

Create a global rule

APISIX-MCP_update_global_rule

Update specific attributes of an existing global rule

APISIX-MCP_create_consumer_group

Create a consumer group

APISIX-MCP_update_consumer_group

Update specific attributes of an existing consumer group

APISIX-MCP_get_all_plugin_names

Get all plugin names

APISIX-MCP_get_plugin_schema

Get all plugins schema or a specific plugin schema by name

APISIX-MCP_update_plugin_config

Update a plugin config

APISIX-MCP_create_or_update_plugin_metadata

Create or update plugin metadata

APISIX-MCP_delete_plugin_metadata

Delete plugin metadata

APISIX-MCP_create_or_update_stream_route

Create a stream route, if the stream route already exists, it will be updated

APISIX-MCP_get_secret_by_id

Get a secret by ID

APISIX-MCP_create_secret

Create a secret

APISIX-MCP_update_secret

Update specific attributes of an existing secret

APISIX-MCP_delete_secret

Delete a secret by ID

APISIX-MCP_create_or_update_proto

Create a proto, if the proto already exists, it will be updated

pubmed-mcp-server_search_pubmed
Search PubMed for articles matching the query. Args: query: The search term for PubMed. max_results: Maximum number of articles to retrieve. Returns: A string containing the abstracts of found articles, separated by two newlines.
CODING DevOps MCP Server_list_issues

IssueTypelimit20

CODING DevOps MCP Server_create_issue-
CODING DevOps MCP Server_delete_issue-
CODING DevOps MCP Server_delete_project

CODING DevOps

CODING DevOps MCP Server_list_projects

CODING DevOps

CODING DevOps MCP Server_create_project

CODING DevOps

WireMCP_capture_packets

Capture live traffic and provide raw packet data as JSON for LLM analysis

WireMCP_get_summary_stats

Capture live traffic and provide protocol hierarchy statistics for LLM analysis

WireMCP_get_conversations

Capture live traffic and provide TCP/UDP conversation statistics for LLM analysis

WireMCP_check_threats

Capture live traffic and check IPs against URLhaus blacklist

WireMCP_check_ip_threats

Check a given IP address against URLhaus blacklist for IOCs

WireMCP_analyze_pcap

Analyze a PCAP file and provide general packet data as JSON for LLM analysis

WireMCP_extract_credentials

Extract potential credentials (HTTP Basic Auth, FTP, Telnet) from a PCAP file for LLM analysis

Paddle MCP Server_list_products

This tool will list products in your Paddle catalog.

Use the maximum perPage by default (200) to ensure comprehensive results. Filter products by status, tax category, and type as needed. Results are paginated - use the 'after' parameter with the last ID from previous results to get the next page. Sort results using orderBy parameter. Include related entities like prices if needed. Amounts are in the smallest currency unit (e.g., cents).

Paddle MCP Server_create_product

This tool will create a new product in Paddle.

When selecting a tax category, choose the one that best describes your product:

  • standard: Software products that are pre-written and can be downloaded and installed onto a local device
  • digital-goods: Non-customizable digital files or media (not software) acquired with an up front payment that can be accessed without any physical product being delivered
  • ebooks: Digital books and educational material which is sold with permanent rights for use by the customer
  • implementation-services: Remote configuration, set-up, and integrating software on behalf of a customer
  • professional-services: Services that involve the application of your expertise and specialized knowledge of a software product
  • saas: Products that allow users to connect to and use online or cloud-based applications over the Internet
  • software-programming-services: Services that can be used to customize and white label software products
  • training-services: Training and education services related to software products
  • website-hosting: Cloud storage service for personal or corporate information, assets, or intellectual property

The tax category affects how taxes are calculated in different jurisdictions. Choose carefully as it impacts your customers' tax rates. When using the standard tax category, prompt the user to review the tax category in the Paddle dashboard.

Paddle MCP Server_list_prices

This tool will list prices in your Paddle catalog.

Use the maximum perPage by default (200) to ensure comprehensive results. Filter prices by product ID, status, recurring, and type as needed. Results are paginated - use the 'after' parameter with the last ID from previous results to get the next page. Sort results using orderBy parameter. Include related entities like products if needed. Amounts are in the smallest currency unit (e.g., cents).

Paddle MCP Server_create_price

This tool will create a new price for a product in Paddle.

When using unitPriceOverrides:

  1. Group countries based on purchasing power parity (PPP), not just currency zones
  2. Create separate overrides for countries with different economic conditions even if they share the same currency (e.g., Greece and Ireland should have different price points)
  3. Adjust prices relative to local economic conditions - higher in wealthy markets, lower in developing economies
  4. For optimal conversion rates, set prices using local market research and willingness-to-pay data
  5. Use local currencies where preferred by the customer

Example unitPriceOverrides structure: [ { "countryCodes": ["GB"], "unitPrice": { "amount": "8500", "currencyCode": "GBP" } }, { "countryCodes": ["IE"], "unitPrice": { "amount": "9500", "currencyCode": "EUR" } }, { "countryCodes": ["GR"], "unitPrice": { "amount": "6500", "currencyCode": "EUR" } }, { "countryCodes": ["IN"], "unitPrice": { "amount": "30000", "currencyCode": "INR" } }, { "countryCodes": ["CN"], "unitPrice": { "amount": "20000", "currencyCode": "CNY" } } ]

Paddle MCP Server_list_customers

This tool will list customers in your Paddle account.

Use the maximum perPage by default (200) to ensure comprehensive results. Filter customers by email, ID, and status as needed. Use the search parameter to find customers by ID, name, or email address. Results are paginated - use the 'after' parameter with the last ID from previous results to get the next page. Sort results using orderBy parameter. Customers can have either 'active' or 'archived' status.

Paddle MCP Server_list_transactions

This tool will list transactions from your Paddle account.

Use the maximum perPage by default (30) to ensure comprehensive results. Filter transactions by billing and creation dates, collection mode, customer ID, invoice number, origin, status and subscription ID as required. You can include related information such as addresses, adjustments, adjustment totals, available payment methods, business details, customer data, and discounts when needed. Results are paginated - use the 'after' parameter with the last ID from previous results to get the next page. Sort results using orderBy parameter. Amounts are in the smallest currency unit (e.g., cents).

Paddle MCP Server_list_subscriptions

This tool will list subscriptions from your Paddle account.

Use the maximum perPage by default (200) to ensure comprehensive results. Filter subscriptions by address ID, customer ID, price ID, collection mode, scheduled change action, and status as needed. Results are paginated - use the 'after' parameter with the last ID from previous results to get the next page. Sort results using orderBy parameter. Amounts are in the smallest currency unit (e.g., cents).

Paddle MCP Server_create_report

This tool creates custom reports in your Paddle account for financial analysis and reconciliation.

Use this tool over list_transactions when trying to gather larger amounts of data from Paddle.

Available report types:

  • 'adjustments': For information about refunds, credits, and chargebacks
  • 'adjustment_line_items': For information about refunds, credits, and chargebacks, broken down by line item level
  • 'transactions': For information about revenue received, past due invoices, draft and issued invoices, and canceled transactions
  • 'transaction_line_items': For information about revenue received, past due invoices, draft and issued invoices, and canceled transactions, broken down by line item level
  • 'products_prices': For information about your products and prices. May include non-catalog products and prices.
  • 'discounts': For information about your product and checkout discounts

Reports are generated asynchronously - you'll receive a report ID that can be used to check status. Reports initially have 'pending' status, then move to 'ready' when available to download. Reports are available in CSV format and can be downloaded once ready. Reports expire after a certain period and are no longer available to download after expiration.

Use this tool when you need detailed financial data for analysis, reconciliation, or export to spreadsheet applications.

Revit MCP Server_create_levels

RevitJSON-RPC 2.0 mcp_toolparams

:

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"CreateLevels" params (List[Dict]): : - elevation (float): - name (str, optional): "Level_{elevation}"

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: # response = create_levels(ctx, params=[ {"elevation": 8000, "name": "Level_3"}, {"elevation": 12000} # "Level_12000" ])

Revit MCP Server_create_floor_plan_views

JSON-RPC 2.0 mcp_toolparams

:

-

-

: ctx (Context): FastMCP method (str): JSON-RPC CreateFloorPlanViews params (List[Dict]): : - levelId (str): ElementId - viewName (str):

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: response = create_floor_plan_views(ctx, params=[ {"levelId": "123456", "viewName": "Level 1 - Floor Plan"}, {"levelId": "789012", "viewName": "Level 2 - Floor Plan"} ])

# { "jsonrpc": "2.0", "result": [ { "elementId": "123789", "name": "Level 1 - Floor Plan", "familyName": "Floor Plan" }, { "elementId": "123790", "name": "Level 2 - Floor Plan", "familyName": "Floor Plan" } ], "id": 1 }
Revit MCP Server_create_grids

RevitJSON-RPC 2.0 mcp_toolparams

:

-

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"CreateGrids" params (List[Dict]): : - startX (float): X - startY (float): Y - endX (float): X - endY (float): Y - name (str, optional): - centerX (float, optional): X - centerY (float, optional): Y

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: # response = create_grids(ctx, params=[ { "name": "Grid_A", "startX": 0, "startY": 0, "endX": 10000, "endY": 0 }, { "name": "Grid_B", "startX": 5000, "startY": 0, "endX": 5000, "endY": 10000, "centerX": 5000, "centerY": 5000 } ])

# { "jsonrpc": "2.0", "result": [ { "elementId": "212801", "name": "Grid_A", "familyName": "" }, { "elementId": "212802", "name": "Grid_B", "familyName": "" } ], "id": 1 }
Revit MCP Server_create_walls

RevitJSON-RPC 2.0 mcp_toolparams

:

-

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"CreateWalls" params (List[Dict]): : - startX (float): X - startY (float): Y - endX (float): X - endY (float): Y - height (float): - width (float): - elevation (float, optional): 0

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: response = create_walls(ctx, params=[ {"startX": 0, "startY": 0, "endX": 5000, "endY": 0, "height": 3000, "width": 200}, {"startX": 5000, "startY": 0, "endX": 5000, "endY": 5000, "height": 3000, "width": 200, "elevation": 1000} ])

# { "jsonrpc": "2.0", "result": [ { "elementId": "123456", "name": "", "familyName": "" }, { "elementId": "123457", "name": "", "familyName": "" } ], "id": 1 }
Revit MCP Server_create_floors

RevitJSON-RPC 2.0 mcp_toolparams

:

-

-

-

  • z

: ctx (Context): FastMCP method (str): JSON-RPC"CreateFloors" params (List[Dict]): : - boundaryPoints (List[Dict]): : - x (float): X - y (float): Y - z (float): Z - floorTypeName (str, optional): - structural (bool, optional): False

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: # response = create_floors(ctx, params=[ { "boundaryPoints": [ {"x": 0, "y": 0, "z": 0}, {"x": 5000, "y": 0, "z": 0}, {"x": 5000, "y": 5000, "z": 0}, {"x": 0, "y": 5000, "z": 0}, {"x": 0, "y": 0, "z": 0} ], "floorTypeName": " - 150mm", "structural": True }, { "boundaryPoints": [ {"x": 0, "y": 0, "z": 3000}, {"x": 5000, "y": 0, "z": 3000}, {"x": 5000, "y": 5000, "z": 3000}, {"x": 0, "y": 5000, "z": 3000}, {"x": 0, "y": 0, "z": 3000} ], "floorTypeName": " - 200mm" } ])

# { "jsonrpc": "2.0", "result": [213001, 213002], "id": 1 }
Revit MCP Server_create_door_windows

RevitJSON-RPC 2.0 mcp_toolparams

:

-

-

  • ElementId

: ctx (Context): FastMCP method (str): JSON-RPC"CreateDoorWindows" params (List[Dict]): : - categoryName (str): - familyName (str): - name (str): - startX (float): X - startY (float): Y - startZ (float): Z - hostId (str): ElementId - offset (str, optional):

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: response = create_door_windows(ctx, params=[ { "categoryName": "", "familyName": "", "name": "915 x 2134mm", "startX": 5000, "startY": 2500, "startZ": 0, "hostId": "123456", "offset": "0" }, { "categoryName": "", "familyName": "", "name": "0915 x 1220mm", "startX": 8000, "startY": 2500, "startZ": 1000, "hostId": "123456", "offset": "900" } ])

Revit MCP Server_create_rooms

JSON-RPC 2.0 mcp_toolparams

:

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"CreateRooms" params (List[Dict]): : - elementId (Union[int, str]): ID

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: -32600: -32602: -32603: -32700:

: # response = create_rooms(ctx, params=[ {"elementId": 123456}, {"elementId": "789012"} ])

# { "jsonrpc": "2.0", "result": [ { "elementId": "212801", "name": " 1", "familyName": "" }, { "elementId": "212802", "name": " 2", "familyName": "" } ], "id": 1 }

: 1. 2. 3.

Revit MCP Server_create_room_tags

IDJSON-RPC 2.0 mcp_toolparams

:

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"CreateRoomTags" params (List[Dict]): : - elementId (Union[int, str]): ID

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: # response = create_room_tags(ctx, params=[{"elementId": 123456}])

# response = create_room_tags(ctx, params=[ {"elementId": 123456}, {"elementId": "789012"} ]) # { "jsonrpc": "2.0", "result": [ { "elementId": "212801", "name": " 1", "familyName": "" }, { "elementId": "212802", "name": " 2", "familyName": "" } ], "id": 1 }

: 1. 2. 3.

Revit MCP Server_create_family_instances

RevitJSON-RPC 2.0 mcp_toolparams

:

-

- - - - - -

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"CreateFamilyInstances" params (List[Dict]): : - categoryName (str): BuiltInCategoryCategory.Name"OST_Walls","OST_Doors", "", "", "" - name (str): - startX (float): X - startY (float): Y - startZ (float): Z - familyName (str, optional): - endX (float, optional): XstartX - endY (float, optional): YstartY - endZ (float, optional): ZstartZ - hostId (str, optional): ID - viewName (str, optional): - rotationAngle (float, optional): 0 - offset (float, optional): 0

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: # response = create_family_instances(ctx, params=[ # { "categoryName": "", "name": "0406 x 0610mm", "startX": 1000, "startY": 2000, "startZ": 0, "hostId": 225535, "level": " 1", }, # { "categoryName": "OST_Furniture", "name": "", "startX": 3000, "startY": 4000, "startZ": 0, "viewName": " 1", "rotationAngle": 90 }, # { "categoryName": "OST_StructuralFraming", "name": "H", "startX": 0, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 0, "endZ": 3000 } ])

# { "jsonrpc": "2.0", "result": [213101, 213102, 213103], "id": 1 }
Revit MCP Server_create_sheets

JSON-RPC 2.0

:

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"CreateSheets" params (List[Dict]): : - number (str): - name (str): - titleBlockType (str): - viewName (str, optional):

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "/ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: response = create_sheets(ctx, params=[ { "number": "101", "name": "", "titleBlockType": "A0 ", "viewName": " 1" }, { "number": "102", "name": "", "titleBlockType": "A0 " } ])

# { "jsonrpc": "2.0", "result": [ { "elementId": "654321", "name": "A101 ", "familyName": "" }, { "elementId": "654322", "name": "-123456", "familyName": "" }, { "elementId": "654323", "name": "A102 ", "familyName": "" } ], "id": 1 }
Revit MCP Server_create_ducts

RevitJSON-RPC 2.0 mcp_toolparams

:

-

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"CreateDucts" params (List[Dict]): : - ductTypeName (str): - systemTypeName (str): - startX (float): X - startY (float): Y - startZ (float): Z - endX (float): X - endY (float): Y - endZ (float): Z - width (float): - height (float):

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: response = create_ducts(ctx, params=[ { "ductTypeName": "", "systemTypeName": "", "startX": 0, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 0, "endZ": 3000, "width": 300, "height": 200 }, { "ductTypeName": "", "systemTypeName": "", "startX": 5000, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 5000, "endZ": 3000, "width": 300, "height": 200 } ])

Revit MCP Server_create_pipes

RevitJSON-RPC 2.0 mcp_toolparams

:

-

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"CreatePipes" params (List[Dict]): : - pipeTypeName (str): - systemTypeName (str): - startX (float): X - startY (float): Y - startZ (float): Z - endX (float): X - endY (float): Y - endZ (float): Z - diameter (float):

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: response = create_pipes(ctx, params=[ { "pipeTypeName": "", "systemTypeName": "", "startX": 0, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 0, "endZ": 3000, "diameter": 50 }, { "pipeTypeName": "", "systemTypeName": "", "startX": 5000, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 5000, "endZ": 3000, "diameter": 40 } ])

Revit MCP Server_create_cable_trays

RevitJSON-RPC 2.0 mcp_toolparams

:

-

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"CreateCableTrays" params (List[Dict]): : - cableTrayTypeName (str): - startX (float): X - startY (float): Y - startZ (float): Z - endX (float): X - endY (float): Y - endZ (float): Z - width (float): - height (float):

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: response = create_cable_trays(ctx, params=[ { "cableTrayTypeName": "", "startX": 0, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 0, "endZ": 3000, "width": 200, "height": 100 }, { "cableTrayTypeName": "", "startX": 5000, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 5000, "endZ": 3000, "width": 200, "height": 100 } ])

Revit MCP Server_get_commands

JSON-RPC 2.0 mcp_toolparams

:

  • Revit

: ctx (Context): FastMCP method (str): JSON-RPC"GetCommands"

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "name": "", "description": "", "tooltip": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: # response = get_commands(ctx)

# { "jsonrpc": "2.0", "result": [ { "name": "", "description": "", "tooltip": "" }, { "name": "", "description": "", "tooltip": "" }, ... ], "id": 1 }
Revit MCP Server_execute_commands

JSON-RPC 2.0 mcp_toolparams

:

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"ExecuteCommands" params (List[Dict]): : - name (str): - add (bool): TrueFalse

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "name": "AI", "description": "DeepSeekRevit,", "tooltip": "(F1)" }, { "name": "AI", "description": "AIRevit,~", "tooltip": "(F1)" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: # response = execute_command(ctx, params=[ {"name": "AI", "add": True}, {"name": "AI", "add": True} ])

# response = execute_command(ctx, params=[ {"name": "AI", "add": False} ])
Revit MCP Server_call_func

Revit JSON-RPC 2.0

:

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"CallFunc" params (List[Dict]): : - name (str): - params (dict, optional): ,

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: response = call_func(ctx, params=[ {"name": "ClearDuplicates"}, {"name": "DeleteZeroRooms"}, {"name": "DimensionViewPlanGrids"}, {"name": "", "params": {"offset": 3000}} ])

# { "jsonrpc": "2.0", "result": [ {"elementId": "123456", "name": "", "familyName": ""}, {"elementId": "789012", "name": "", "familyName": ""}, {"elementId": "345678", "name": "", "familyName": ""}, {"elementId": "345672", "name": " 3", "familyName": ""}, ], "id": 1 }
Revit MCP Server_find_elements

RevitJSON-RPC 2.0 mcp_toolparams

:

  • BuiltInCategoryCategory.Name
  • JSON-RPC 2.0

: ctx (Context): FastMCP method (str): JSON-RPC"FindElements" params (List[Dict[str, Union[str, bool]]]): : - categoryName (str): BuiltInCategoryCategory.Name "OST_Walls","OST_Doors", "", "", "" - isInstance (bool): True,False

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": , "message": , "data": }, "id": request_id }

: -32600: -32602: BuiltInCategoryCategory.Name -32603: -32700:

: >>> response = find_elements(ctx, params=[ ... {"categoryName": "OST_Doors", "isInstance": False}, ... {"categoryName": "", "isInstance": True} ... ]) >>> print(response) { "jsonrpc": "2.0", "result": [ {"elementId": "123456", "name": "", "familyName": "M_"}, {"elementId": "789012", "name": "", "familyName": "M_"} ], "id": 1 }

Revit MCP Server_update_elements

RevitJSON-RPC 2.0 mcp_toolparams

:

  • ID/
  • JSON-RPC 2.0

: ctx (Context): FastMCP method (str): JSON-RPC"UpdateElements" params (List[Dict[str, Union[str, int]]]): : - elementId (Union[str, int]): ID - parameterName (str): - parameterValue (str):

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": , "message": , "data": }, "id": request_id }

: -32600 (Invalid Request): -32602 (Invalid Params): / -32603 (Internal Error): -32700 (Parse Error):

: > # > response = update_elements(ctx, params=[ ... {"elementId": 123456, "parameterName": "Comments", "parameterValue": "Test"}, ... {"elementId": "789012", "parameterName": "Height", "parameterValue": "3000"} ... ]) > print(response) { "jsonrpc": "2.0", "result": [ {"elementId": "123456", "name": "", "familyName": ""}, {"elementId": "789012", "name": "", "familyName": "M_"} ], "id": 1 }

# > response = update_elements(ctx, params=[ ... {"elementId":112,"parameterName":"InvalidParam","parameterValue":"X"} ]) > print(response) > {"jsonrpc":"2.0","error":{"code":-32602,"message":"","data":"'InvalidParam'"},"id":1}

: Revit

Revit MCP Server_delete_elements

RevitJSON-RPC 2.0 mcp_toolparams

:

  • elementId
  • elementId

: ctx (Context): FastMCP method (str): JSON-RPC"DeleteElements" params (List[Dict[str, Union[int, str]]]): : - elementId (Union[int, str]): ID

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: >>> # >>> response = delete_elements(ctx, params=[ ... {"elementId": 5943}, ... {"elementId": "5913"}, ... {"elementId": 212831} ... ]) >>> print(response) { "jsonrpc": "2.0", "result": [ {"elementId": "5943", "name": "Wall 1", "familyName": "Basic Wall"}, {"elementId": "5913", "name": "Door 1", "familyName": "Single-Flush"}, {"elementId": "212831", "name": "Window 1", "familyName": "Fixed"} ], "id": 1 }

Revit MCP Server_parameter_elements

RevitJSON-RPC 2.0 mcp_toolparams

:

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"ParameterElements" params (List[Dict]): : - elementId (Union[int, str]): ID - parameterName (str, optional):

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": { "elementId1": [ { "hashCode": int, "parameterName": str, "parameterValue": str, } ], ... }, "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: # response = parameter_elements(ctx, params=[ {"elementId": 212792, "parameterName": ""}, # {"elementId": 212781} # ])

# { "jsonrpc": "2.0", "result": { "212792": [ { "hashCode": 12345, "parameterName": "", "parameterValue": "", } ], "212781": [ { "hashCode": 23456, "parameterName": "", "parameterValue": "5000", }, ... ] }, "id": 1 }
Revit MCP Server_get_locations

RevitJSON-RPC 2.0 mcp_toolparams

:

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"GetLocations" params (List[Dict]): : - elementId (Union[str, int]): ID,strId

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": { "elementId1": [ { "X": float, # X "Y": float, # Y "Z": float # Z }, ... ], ... }, "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: -32600: -32602: -32603: -32700:

: # response = get_location(ctx, params=[ {"elementId": 123456}, {"elementId": "789012"} ])

# XYZ { "jsonrpc": "2.0", "result": { "123456": [ {"X": 1000.0, "Y": 2000.0, "Z": 0.0} ] }, "id": 1 } # Line { "jsonrpc": "2.0", "result": { "789012": [ {"X": 0.0, "Y": 0.0, "Z": 0.0}, {"X": 5000.0, "Y": 0.0, "Z": 0.0} ] }, "id": 1 } # Arc { "jsonrpc": "2.0", "result": { "789012": [ {"X": 0.0, "Y": 0.0, "Z": 0.0}, {"X": 5000.0, "Y": 0.0, "Z": 0.0} {"X": 2500.0, "Y": 1200, "Z": 0.0} ] }, "id": 1 } :,
Revit MCP Server_move_elements

RevitJSON-RPC 2.0 mcp_toolparams

:

  • Revit
  • ElementModelRequest

: ctx (Context): FastMCP method (str): JSON-RPC"MoveElements" params (List[Dict]): : - elementId (str): ID - x (float): X - y (float): Y - z (float): Z

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: response = move_elements(ctx, params=[ {"elementId": "123456", "x": 100, "y": 200, "z": 0}, {"elementId": "789012", "x": -50, "y": 0, "z": 300} ])

Revit MCP Server_show_elements

RevitJSON-RPC 2.0 mcp_toolparams

:

  • ID

: ctx (Context): FastMCP method (str): JSON-RPC"ShowElements" params (List[Dict[str, Union[int, str]]]): : - elementId (Union[int, str]): ID

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ID], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": , "message": , "data": }, "id": request_id }

: -32600 (Invalid Request): -32602 (Invalid Params): ID -32603 (Internal Error): -32700 (Parse Error):

: >>> # >>> response = show_elements(ctx, params=[ ... {"elementId": 212781}, ... {"elementId": "212792"} ... ]) >>> print(response) {"jsonrpc":"2.0","result":[212781,212792],"id":1}

: : 1. 2. 3.

Revit MCP Server_active_view

RevitJSON-RPC 2.0 mcp_toolparams

:

-

-

-

: ctx (Context): FastMCP method (str): JSON-RPC"ActiveView" params (List[Dict]): : - elementId (Union[int, str]): ID

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: -32600: -32602: // -32603: -32700:

: # response = active_view(ctx, params=[{"elementId": 123456}])

# response = active_view(ctx, params=[ {"elementId": 123456}, {"elementId": "789012"} ]) # { "jsonrpc": "2.0", "result": [123456, 789012], "id": 1 }

: 1. 2. ID 3. ID

Revit MCP Server_get_selected_elements

Revit UIJSON-RPC 2.0

:

  • Revit
  • ID
  • UI

: ctx (Context): FastMCP method (str): JSON-RPC"GetSelectedElements"

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: # response = get_selected_elements(ctx)

# { "jsonrpc":"2.0","id":"a39934f6-0ee9-4319-b820-1eba95a82c51", "result": [ {"elementId":"355","familyName":"","name":" 1"}, {"elementId":"2607","familyName":"","name":" 2"}, {"elementId":"5855","familyName":"","name":"T.O. Fnd. "} ], "error":[] }
Revit MCP Server_link_dwg_and_activate_view

DWG JSON-RPC 2.0

:

  • DWG

: ctx (Context): FastMCP method (str): JSON-RPC"LinkDWGAndActivateView" params (List[Dict]): : - filePath (str): DWG - viewName (str):

: dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "filePath": "", "viewId": "ID", "viewName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id }

: response = link_and_activate_view(ctx, params=[ {"filePath": "C:\Projects\SampleDrawing.dwg", "viewName": "Level 1"} ])

# { "jsonrpc": "2.0", "result": [ { "filePath": "C:\Projects\SampleDrawing.dwg", "viewId": 123456, "viewName": "Level 1" } ], "id": 1 }
Safe Local Python Executor/Interpreter_run_python

Execute Python code in a secure sandbox environment.

This tool allows running simple Python code for calculations and data manipulations. The execution environment is restricted for security purposes. Make sure you create a single file that can be executed in one go and it returns a result. Default allowed imports: - math - random - datetime - time - json - re - string - collections - itertools - functools - operator Args: code: The Python code to execute. Must be valid Python 3 code. The result must be stored in a variable called `result`. E.g.: ```python import math result = math.sqrt(16) ``` Returns: A dictionary with execution results containing: - result: The final value or None if no value is returned - logs: Any output from print statements
mcp-my-apple-remembers_my_apple_recall_memory

Run Apple Script on a remote MacOs machine. This call should be used to recall the apple notes, apple calendar, imessages, chat messages, files, context or any other information of a MacOs machine can have access to.

mcp-my-apple-remembers_my_apple_save_memory

Run Apple Script on a remote MacOs machine. This call should be used to save relevant information to the apple notes. You decide what information to save. You should always add a new notes with a timestamp as the title.

PCM_cache-stats

Get CCXT cache statistics

PCM_clear-cache

Clear CCXT cache

PCM_set-log-level

Set logging level

PCM_list-exchanges

List all available cryptocurrency exchanges

PCM_get-ticker

Get current ticker information for a trading pair

PCM_batch-get-tickers

Get ticker information for multiple trading pairs at once

PCM_get-orderbook

Get market order book for a trading pair

PCM_get-ohlcv

Get OHLCV candlestick data for a trading pair

PCM_get-trades

Get recent trades for a trading pair

PCM_get-markets

Get all available markets for an exchange

PCM_get-exchange-info

Get exchange information and status

PCM_get-leverage-tiers

Get futures leverage tiers for trading pairs

PCM_get-funding-rates

Get current funding rates for perpetual contracts

PCM_get-market-types

Get market types supported by an exchange

PCM_account-balance

Get your account balance from a crypto exchange

PCM_place-market-order

Place a market order on an exchange

PCM_set-leverage

Set leverage for futures trading

PCM_set-margin-mode

Set margin mode for futures trading

PCM_place-futures-market-order

Place a futures market order

PCM_get-proxy-config

Get the current proxy configuration

PCM_set-proxy-config

Configure proxy settings for all exchanges

PCM_test-proxy-connection

Test the proxy connection with a specified exchange

PCM_clear-exchange-cache

Clear exchange instance cache to apply configuration changes

PCM_set-market-type

Set default market type for all exchanges

MasterGo Magic MCP_mcp__getDsl

"Use this tool to retrieve the DSL (Domain Specific Language) data from MasterGo design files and the rules you must follow when generating code. This tool is useful when you need to analyze the structure of a design, understand component hierarchy, or extract design properties. You must provide a fileId and layerId to identify the specific design element. This tool returns the raw DSL data in JSON format that you can then parse and analyze. This tool also returns the rules you must follow when generating code. The DSL data can also be used to transform and generate code for different frameworks."

MasterGo Magic MCP_mcp__getComponentLink

When the data returned by mcp__getDsl contains a non-empty componentDocumentLinks array, this tool is used to sequentially retrieve URLs from the componentDocumentLinks array and then obtain component documentation data. The returned document data is used for you to generate frontend code based on components.

Xero MCP Server_list-contacts

List all contacts in Xero. This includes Suppliers and Customers.

Xero MCP Server_update-contact

Update a contact in Xero.

Xero MCP Server_create-quote

Create a quote in Xero.

Xero MCP Server_list-invoices

List invoices in Xero. This includes Draft, Submitted, and Paid invoices. Ask the user if they want to see invoices for a specific contact, invoice number, or to see all invoices before running. Ask the user if they want the next page of invoices after running this tool if 10 invoices are returned. If they want the next page, call this tool again with the next page number and the contact or invoice number if one was provided in the previous call.

Xero MCP Server_create-contact

Create a contact in Xero.

Xero MCP Server_create-invoice

Create an invoice in Xero.

Xero MCP Server_list-accounts

Lists all accounts in Xero. Use this tool to get the account codes and names to be used when creating invoices in Xero

Xero MCP Server_list-tax-rates

Lists all tax rates in Xero. Use this tool to get the tax rates to be used when creating invoices in Xero

Xero MCP Server_list-quotes

List all quotes in Xero. Ask the user if they want to see quotes for a specific contact before running. Ask the user if they want the next page of quotes after running this tool if 10 quotes are returned. If they do, call this tool again with the page number and the contact provided in the previous call.

Xero MCP Server_update-invoice

Update an invoice in Xero. Only works on draft invoices.

Xero MCP Server_list-credit-notes

List credit notes in Xero. Ask the user if they want to see credit notes for a specific contact, or to see all credit notes before running. Ask the user if they want the next page of credit notes after running this tool if 10 credit notes are returned. If they want the next page, call this tool again with the next page number and the contact if one was provided in the previous call.

Xero MCP Server_create-credit-note

Create a credit note in Xero.

Gmail MCP_list_forwarding_addresses

Lists the forwarding addresses for the specified account

Gmail MCP_delete_send_as

Deletes the specified send-as alias

Gmail MCP_remove_delegate

Removes the specified delegate

Gmail MCP_get_send_as

Gets the specified send-as alias

Gmail MCP_list_send_as

Lists the send-as aliases for the specified account

Gmail MCP_get_delegate

Gets the specified delegate

Gmail MCP_list_delegates

Lists the delegates for the specified account

Gmail MCP_create_send_as

Creates a custom send-as alias

Gmail MCP_update_pop

Updates POP settings

Gmail MCP_get_thread

Get a specific thread by ID

Gmail MCP_create_draft

Create a draft email in Gmail. Note the mechanics of the raw parameter.

Gmail MCP_delete_draft

Delete a draft

Gmail MCP_get_draft

Get a specific draft by ID

Gmail MCP_list_drafts

List drafts in the user's mailbox

Gmail MCP_send_draft

Send an existing draft

Gmail MCP_update_draft

Replace a draft's content. Note the mechanics of the threadId and raw parameters.

Gmail MCP_create_label

Create a new label

Gmail MCP_delete_label

Delete a label

Gmail MCP_get_label

Get a specific label by ID

Gmail MCP_list_labels

List all labels in the user's mailbox

Gmail MCP_patch_label

Patch an existing label (partial update)

Gmail MCP_delete_forwarding_address

Deletes the specified forwarding address

Gmail MCP_update_label

Update an existing label

Gmail MCP_batch_delete_messages

Delete multiple messages

Gmail MCP_batch_modify_messages

Modify the labels on multiple messages

Gmail MCP_delete_message

Immediately and permanently delete a message

Gmail MCP_get_message

Get a specific message by ID with format options

Gmail MCP_list_messages

List messages in the user's mailbox with optional filtering

Gmail MCP_modify_message

Modify the labels on a message

Gmail MCP_update_vacation

Update vacation responder settings

Gmail MCP_send_message

Send an email message to specified recipients. Note the mechanics of the raw parameter.

Gmail MCP_trash_message

Move a message to the trash

Gmail MCP_untrash_message

Remove a message from the trash

Gmail MCP_get_attachment

Get a message attachment

Gmail MCP_delete_thread

Delete a thread

Gmail MCP_get_forwarding_address

Gets the specified forwarding address

Gmail MCP_list_threads

List threads in the user's mailbox

Gmail MCP_modify_thread

Modify the labels applied to a thread

Gmail MCP_trash_thread

Move a thread to the trash

Gmail MCP_untrash_thread

Remove a thread from the trash

Gmail MCP_get_auto_forwarding

Gets auto-forwarding settings

Gmail MCP_get_imap

Gets IMAP settings

Gmail MCP_get_language

Gets language settings

Gmail MCP_get_pop

Gets POP settings

Gmail MCP_get_vacation

Get vacation responder settings

Gmail MCP_update_auto_forwarding

Updates automatic forwarding settings

Gmail MCP_update_imap

Updates IMAP settings

Gmail MCP_update_language

Updates language settings

Gmail MCP_add_delegate

Adds a delegate to the specified account

Gmail MCP_create_filter

Creates a filter

Gmail MCP_delete_filter

Deletes a filter

Gmail MCP_get_filter

Gets a filter

Gmail MCP_list_filters

Lists the message filters of a Gmail user

Gmail MCP_create_forwarding_address

Creates a forwarding address

Gmail MCP_patch_send_as

Patches the specified send-as alias

Gmail MCP_update_send_as

Updates a send-as alias

Gmail MCP_verify_send_as

Sends a verification email to the specified send-as alias

Gmail MCP_delete_smime_info

Deletes the specified S/MIME config for the specified send-as alias

Gmail MCP_get_smime_info

Gets the specified S/MIME config for the specified send-as alias

Gmail MCP_insert_smime_info

Insert (upload) the given S/MIME config for the specified send-as alias

Gmail MCP_list_smime_info

Lists S/MIME configs for the specified send-as alias

Gmail MCP_set_default_smime_info

Sets the default S/MIME config for the specified send-as alias

Gmail MCP_get_profile

Get the current user's Gmail profile

Gmail MCP_watch_mailbox

Watch for changes to the user's mailbox

Gmail MCP_stop_mail_watch

Stop receiving push notifications for the given user mailbox

MCP Minecraft Remote_getPosition

Get the current position of the player in the Minecraft world

MCP Minecraft Remote_moveTo

Move the player to a specific location

MCP Minecraft Remote_connectToServer

Connect to a Minecraft server with the specified credentials

MCP Minecraft Remote_disconnectFromServer

Disconnect from the Minecraft server

MCP Minecraft Remote_sendChat

Send a chat message to the Minecraft server

MCP Minecraft Remote_moveControl

Control the player with basic movement commands

MCP Minecraft Remote_lookAt

Make the player look in a specific direction or at coordinates

MCP Minecraft Remote_digBlock

Dig a block at the specified coordinates

MCP Minecraft Remote_placeBlock

Place a block at the specified location

MCP Minecraft Remote_getNearbyPlayers

Get a list of players nearby

MCP Minecraft Remote_getServerInfo

Get information about the currently connected server

MCP Minecraft Remote_checkInventory

Check the items in the player inventory

MCP Minecraft Remote_equipItem

Equip an item from inventory to hand or armor slot

MCP Minecraft Remote_inventoryDetails

Get detailed information about inventory items

MCP Minecraft Remote_tossItem

Throw items from inventory

MCP Minecraft Remote_getNearbyEntities

Get a list of all entities nearby

MCP Minecraft Remote_attackEntity

Attack a specific entity

MCP Minecraft Remote_useOnEntity

Use held item on a specific entity

MCP Minecraft Remote_followEntity

Follow a specific entity

MCP Minecraft Remote_openContainer

Open a container (chest, furnace, etc.) at specific coordinates

MCP Minecraft Remote_withdrawItem

Take items from an open container

MCP Minecraft Remote_depositItem

Put items into an open container

MCP Minecraft Remote_closeContainer

Close the currently open container

MCP Minecraft Remote_getRecipes

Get a list of available crafting recipes

MCP Minecraft Remote_craftItem

Craft an item using available materials

MCP Minecraft Remote_listTrades

List available trades from a nearby villager

MCP Minecraft Remote_tradeWithVillager

Trade with a nearby villager

MCP Agile Flow_get_project_settings
Get the project settings for the current working directory or a proposed path. Returns configuration settings including project path, type, and metadata. If proposed_path is not provided or invalid, uses the current directory.
MCP Agile Flow_think
Record a thought for later reference and analysis. This tool allows you to record thoughts during development or analysis processes. Thoughts can be organized by category and depth to create a hierarchical structure of analysis.
MCP Agile Flow_get_thoughts
Retrieve recorded thoughts. This tool retrieves all previously recorded thoughts, optionally filtered by category. You can also choose to organize them hierarchically by depth.
MCP Agile Flow_clear_thoughts
Clear recorded thoughts. This tool removes previously recorded thoughts, optionally filtered by category. If no category is specified, all thoughts will be cleared.
MCP Agile Flow_get_thought_stats
Get statistics about recorded thoughts. This tool provides statistics about recorded thoughts, such as count and depth distribution. Results can be filtered by category.
MCP Agile Flow_detect_thinking_directive
Detect thinking directives. This tool analyzes text to detect directives suggesting deeper thinking, such as "think harder", "think deeper", "think again", etc.
MCP Agile Flow_should_think
Assess whether deeper thinking is needed for a query. This tool analyzes a query to determine if it requires deeper thinking, based on complexity indicators and context.
MCP Agile Flow_think_more
Get guidance for thinking more deeply. This tool provides suggestions and guidance for thinking more deeply about a specific query or thought.
MCP Agile Flow_initialize_ide
Initialize IDE project structure with appropriate directories and config files. This tool sets up the necessary directories and configuration files for IDE integration, including .ai-templates directory and IDE-specific rules. Note: If project_path is omitted, not a string, invalid, or the directory doesn't exist, the current working directory will be used automatically.
MCP Agile Flow_initialize_ide_rules
Initialize IDE rules for a project. This tool sets up IDE-specific rules for a project, creating the necessary files and directories for AI assistants to understand project conventions. Note: If project_path is omitted, not a string, or invalid, the current working directory will be used automatically.
MCP Agile Flow_prime_context
Prime project context by analyzing documentation and structure. This tool analyzes the project structure and documentation to provide context information for AI assistants working with the project. Note: If project_path is omitted, not a string, or invalid, the current working directory will be used automatically.
MCP Agile Flow_migrate_mcp_config
Migrate MCP configuration between different IDEs. This tool helps migrate configuration and rules between different IDEs, ensuring consistent AI assistance across different environments. Note: If project_path is omitted, not a string, or invalid, the current working directory will be used automatically.
MCP Agile Flow_process_natural_language
Process natural language command and route to appropriate tool. This tool takes a natural language query and determines which tool to call with what parameters, providing a way to interact with the MCP Agile Flow tools using natural language.
Hevy MCP_get-workouts

Get a paginated list of workouts. Returns workout details including title, description, start/end times, and exercises performed. Results are ordered from newest to oldest.

Hevy MCP_get-workout

Get complete details of a specific workout by ID. Returns all workout information including title, description, start/end times, and detailed exercise data.

Hevy MCP_get-workout-count

Get the total number of workouts on the account. Useful for pagination or statistics.

Hevy MCP_get-workout-events

Retrieve a paged list of workout events (updates or deletes) since a given date. Events are ordered from newest to oldest. The intention is to allow clients to keep their local cache of workouts up to date without having to fetch the entire list of workouts.

Hevy MCP_create-workout

Create a new workout in your Hevy account. Requires title, start/end times, and at least one exercise with sets. Returns the complete workout details upon successful creation including the newly assigned workout ID.

Hevy MCP_update-workout

Update an existing workout by ID. You can modify the title, description, start/end times, privacy setting, and exercise data. Returns the updated workout with all changes applied.

Hevy MCP_get-routines

Get a paginated list of routines. Returns routine details including title, creation date, folder assignment, and exercise configurations. Results include both default and custom routines.

Hevy MCP_get-routine

Get complete details of a specific routine by ID. Returns all routine information including title, notes, assigned folder, and detailed exercise data with set configurations.

Hevy MCP_create-routine

Create a new workout routine in your Hevy account. Requires title and at least one exercise with sets. Optionally assign to a specific folder. Returns the complete routine details upon successful creation including the newly assigned routine ID.

Hevy MCP_update-routine

Update an existing workout routine by ID. You can modify the title, notes, and exercise data. Returns the updated routine with all changes applied. Note that you cannot change the folder assignment through this method.

Hevy MCP_get-exercise-templates

Get a paginated list of exercise templates available on the account. Returns both default and custom exercise templates with details including title, type, primary muscle group, and secondary muscle groups. Supports up to 100 templates per page.

Hevy MCP_get-exercise-template

Get complete details of a specific exercise template by ID. Returns all template information including title, type, primary muscle group, secondary muscle groups, and whether it's a custom exercise.

Hevy MCP_get-routine-folders

Get a paginated list of routine folders available on the account. Returns folder details including ID, title, index (order position), and creation/update timestamps. Useful for organizing routines into categories.

Hevy MCP_get-routine-folder

Get complete details of a specific routine folder by ID. Returns all folder information including title, index (order position), and creation/update timestamps.

Hevy MCP_create-routine-folder

Create a new routine folder in your Hevy account. The folder will be created at index 0, and all other folders will have their indexes incremented. Returns the complete folder details upon successful creation including the newly assigned folder ID.

DataWorks MCP Server_UpdateWorkflowDefinition-
DataWorks MCP Server_ListProjectRoles-
DataWorks MCP Server_UpdateFunction-
DataWorks MCP Server_UpdateTaskInstances-
DataWorks MCP Server_ResumeTaskInstances-
DataWorks MCP Server_ListDataQualityRules-
DataWorks MCP Server_ListDeployments-
DataWorks MCP Server_BatchUpdateTasks

*ToolMCP ResourceBatchUpdateTasks(MCP Resource)Tool

DataWorks MCP Server_DeleteDataQualityEvaluationTask-
DataWorks MCP Server_StopTaskInstances-
DataWorks MCP Server_ListDataSourceSharedRules-
DataWorks MCP Server_DeleteResource-
DataWorks MCP Server_ListDIJobMetrics-
DataWorks MCP Server_ListUpstreamTaskInstances-
DataWorks MCP Server_ListDIJobs-
DataWorks MCP Server_ListUpstreamTasks-
DataWorks MCP Server_GetTaskInstance-
DataWorks MCP Server_MoveResource-
DataWorks MCP Server_UpdateDataQualityRule-
DataWorks MCP Server_ListDataSources-
DataWorks MCP Server_DeleteDataQualityRule-
DataWorks MCP Server_RerunTaskInstances-
DataWorks MCP Server_UpdateAlertRule

*ToolMCP ResourceUpdateAlertRule(MCP Resource)Tool

DataWorks MCP Server_CreateDataQualityRule

*ToolMCP ResourceCreateDataQualityRule(MCP Resource)Tool

DataWorks MCP Server_ListDIJobEvents-
DataWorks MCP Server_ListTaskInstanceOperationLogs-
DataWorks MCP Server_ListWorkflows-
DataWorks MCP Server_GetNetwork-
DataWorks MCP Server_RevokeMemberProjectRoles-
DataWorks MCP Server_ListTaskInstances-
DataWorks MCP Server_ImportWorkflowDefinition-
DataWorks MCP Server_DeleteDIAlarmRule-
DataWorks MCP Server_GetTask-
DataWorks MCP Server_MoveNode-
DataWorks MCP Server_GetDataQualityEvaluationTask-
DataWorks MCP Server_DeleteWorkflowDefinition-
DataWorks MCP Server_ExecDeploymentStage-
DataWorks MCP Server_CreateDIAlarmRule

*ToolMCP ResourceCreateDIAlarmRule(MCP Resource)Tool

DataWorks MCP Server_DeleteNode-
DataWorks MCP Server_TestDataSourceConnectivity-
DataWorks MCP Server_DeleteProjectMember-
DataWorks MCP Server_GetProjectMember-
DataWorks MCP Server_ListNetworks-
DataWorks MCP Server_CreateDataSource-
DataWorks MCP Server_RemoveTaskInstanceDependencies-
DataWorks MCP Server_GetDIJob-
DataWorks MCP Server_ListAlertRules-
DataWorks MCP Server_GetWorkflow-
DataWorks MCP Server_CreateDeployment-
DataWorks MCP Server_GetFunction-
DataWorks MCP Server_GetTaskInstanceLog-
DataWorks MCP Server_GetDIJobLog-
DataWorks MCP Server_SuspendTaskInstances-
DataWorks MCP Server_RenameResource-
DataWorks MCP Server_GrantMemberProjectRoles-
DataWorks MCP Server_GetResourceGroup

ID

DataWorks MCP Server_CreateNode

*ToolMCP ResourceCreateNode(MCP Resource)Tool

DataWorks MCP Server_CreateDataQualityEvaluationTaskInstance-
DataWorks MCP Server_UpdateWorkflow

*ToolMCP ResourceUpdateWorkflow(MCP Resource)Tool

DataWorks MCP Server_DeleteDataSource-
DataWorks MCP Server_StopWorkflowInstances-
DataWorks MCP Server_RenameFunction-
DataWorks MCP Server_MoveWorkflowDefinition-
DataWorks MCP Server_GetDataQualityRule-
DataWorks MCP Server_StartDIJob-
DataWorks MCP Server_CreateWorkflowInstances

*ToolMCP ResourceCreateWorkflowInstances(MCP Resource)Tool

DataWorks MCP Server_DeleteWorkflow-
DataWorks MCP Server_RenameNode-
DataWorks MCP Server_CreateResource-
DataWorks MCP Server_ListWorkflowDefinitions-
DataWorks MCP Server_UpdateDIJob

*ToolMCP ResourceUpdateDIJob(MCP Resource)Tool

DataWorks MCP Server_ExecuteAdhocWorkflowInstance

*ToolMCP ResourceExecuteAdhocWorkflowInstance(MCP Resource)Tool

DataWorks MCP Server_ListDataAssetTags-
DataWorks MCP Server_ListDataQualityRuleTemplates-
DataWorks MCP Server_GetWorkflowInstance-
DataWorks MCP Server_AttachDataQualityRulesToEvaluationTask-
DataWorks MCP Server_GetCreateWorkflowInstancesResult-
DataWorks MCP Server_UpdateNode-
DataWorks MCP Server_UpdateResource-
DataWorks MCP Server_GetAlertRule-
DataWorks MCP Server_ListRoutes-
DataWorks MCP Server_GetDataQualityEvaluationTaskInstance-
DataWorks MCP Server_StopDIJob-
DataWorks MCP Server_ListDataQualityEvaluationTasks-
DataWorks MCP Server_ListTaskOperationLogs-
DataWorks MCP Server_ListProjectMembers-
DataWorks MCP Server_ListDownstreamTaskInstances-
DataWorks MCP Server_GetRoute

ID

DataWorks MCP Server_UpdateDataSource-
DataWorks MCP Server_UpdateDIAlarmRule

*ToolMCP ResourceUpdateDIAlarmRule(MCP Resource)Tool

DataWorks MCP Server_GetJobStatus

API

DataWorks MCP Server_SetSuccessTaskInstances-
DataWorks MCP Server_ListDataAssets-
DataWorks MCP Server_GetDataQualityRuleTemplate-
DataWorks MCP Server_DeleteFunction-
DataWorks MCP Server_ListProjects-
DataWorks MCP Server_CloneDataSource-
DataWorks MCP Server_StartWorkflowInstances-
DataWorks MCP Server_TriggerSchedulerTaskInstance-
DataWorks MCP Server_GetProject-
DataWorks MCP Server_CreateAlertRule

*ToolMCP ResourceCreateAlertRule(MCP Resource)Tool

DataWorks MCP Server_GetDeployment-
DataWorks MCP Server_GetNode-
DataWorks MCP Server_GetDataSource-
DataWorks MCP Server_DeleteTask-
DataWorks MCP Server_DeleteDIJob-
DataWorks MCP Server_GetResource-
DataWorks MCP Server_CreateProjectMember-
DataWorks MCP Server_CreateDataQualityEvaluationTask

*ToolMCP ResourceCreateDataQualityEvaluationTask(MCP Resource)Tool

DataWorks MCP Server_UpdateDataQualityEvaluationTask

*ToolMCP ResourceUpdateDataQualityEvaluationTask(MCP Resource)Tool

DataWorks MCP Server_ListWorkflowInstances-
DataWorks MCP Server_ListDownstreamTasks-
DataWorks MCP Server_CreateFunction-
DataWorks MCP Server_CreateWorkflowDefinition-
DataWorks MCP Server_ListNodes-
DataWorks MCP Server_MoveFunction-
DataWorks MCP Server_ListTasks-
DataWorks MCP Server_ListResources-
DataWorks MCP Server_ListDataQualityResults-
DataWorks MCP Server_ListDIAlarmRules-
DataWorks MCP Server_DeleteAlertRule-
DataWorks MCP Server_AbolishDeployment-
DataWorks MCP Server_ListNodeDependencies-
DataWorks MCP Server_GetWorkflowDefinition-
DataWorks MCP Server_ListDIJobRunDetails-
DataWorks MCP Server_CreateDIJob

*ToolMCP ResourceCreateDIJob(MCP Resource)Tool

DataWorks MCP Server_RenameWorkflowDefinition-
DataWorks MCP Server_GetProjectRole-
DataWorks MCP Server_ListResourceGroups-
DataWorks MCP Server_UpdateTask

*ToolMCP ResourceUpdateTask(MCP Resource)Tool

DataWorks MCP Server_ListFunctions-
DataWorks MCP Server_ListDataQualityEvaluationTaskInstances-
DataWorks MCP Server_GetMetaTableOutput-
DataWorks MCP Server_GetMetaTableChangeLog-
DataWorks MCP Server_GetRemind-
DataWorks MCP Server_GetTopic-
DataWorks MCP Server_ListTables-
DataWorks MCP Server_GetTopicInfluence-
DataWorks MCP Server_SaveDataServiceApiTestResult

API

DataWorks MCP Server_GetMetaTablePartition-
DataWorks MCP Server_GetAlertMessage-
DataWorks MCP Server_SearchMetaTables-
DataWorks MCP Server_ListDataServiceApis

API

DataWorks MCP Server_ListAlertMessages-
DataWorks MCP Server_GetDataServiceApiTest

API

DataWorks MCP Server_GetMetaTableIntroWiki-
DataWorks MCP Server_ListLineage-
DataWorks MCP Server_CreateDISyncTask-
DataWorks MCP Server_GetDataServiceApi

API

DataWorks MCP Server_GetMetaDBTableList-
DataWorks MCP Server_DeleteDataServiceApi

API

DataWorks MCP Server_CreateDataServiceApi

API

DataWorks MCP Server_ConvertTimestamps

Tool

DataWorks MCP Server_ToTimestamps-
DataWorks MCP Server_TestDataServiceApi

API

DataWorks MCP Server_GetDataServicePublishedApi

API

DataWorks MCP Server_CreatePermissionApplyOrder

*ToolMCP ResourceCreatePermissionApplyOrder(MCP Resource)Tool

DataWorks MCP Server_ListTopics-
DataWorks MCP Server_AbolishDataServiceApi

API

DataWorks MCP Server_ListPermissionApplyOrders-
DataWorks MCP Server_RevokeTablePermission-
DataWorks MCP Server_ApprovePermissionApplyOrder-
DataWorks MCP Server_SubmitDataServiceApi

API

DataWorks MCP Server_ListDataServicePublishedApis

API

DataWorks MCP Server_GetPermissionApplyOrderDetail-
DataWorks MCP Server_UpdateDataServiceApi

API

DataWorks MCP Server_PublishDataServiceApi

API

DataWorks MCP Server_GetMetaTableBasicInfo-
DataWorks MCP Server_GetMetaTableColumn-
Anki MCP Server_get-cards-reviewed

Get the number of cards reviewed by day

Anki MCP Server_find-notes

Find notes matching a query in Anki

Anki MCP Server_get-collection-overview

Get comprehensive information about the Anki collection including decks, models, and fields

Anki MCP Server_add-or-update-notes

Add new notes or update existing ones in Anki

IDA Pro MCP_declare_c_type

Create or update a local type from a C declaration

IDA Pro MCP_set_local_variable_type

Set a local variable's type

IDA Pro MCP_check_connection

Check if the IDA plugin is running

IDA Pro MCP_get_metadata

Get metadata about the current IDB

IDA Pro MCP_get_function_by_name

Get a function by its name

IDA Pro MCP_get_function_by_address

Get a function by its address

IDA Pro MCP_get_current_address

Get the address currently selected by the user

IDA Pro MCP_get_current_function

Get the function currently selected by the user

IDA Pro MCP_convert_number

Convert a number (decimal, hexadecimal) to different representations

IDA Pro MCP_list_functions

List all functions in the database (paginated)

IDA Pro MCP_list_strings

List all strings in the database (paginated)

IDA Pro MCP_search_strings

Search for strings containing the given pattern (case-insensitive)

IDA Pro MCP_decompile_function

Decompile a function at the given address

IDA Pro MCP_disassemble_function

Get assembly code (address: instruction; comment) for a function

IDA Pro MCP_get_xrefs_to

Get all cross references to the given address

IDA Pro MCP_get_entry_points

Get all entry points in the database

IDA Pro MCP_set_comment

Set a comment for a given address in the function disassembly and pseudocode

IDA Pro MCP_rename_local_variable

Rename a local variable in a function

IDA Pro MCP_rename_global_variable

Rename a global variable

IDA Pro MCP_set_global_variable_type

Set a global variable's type

IDA Pro MCP_rename_function

Rename a function

IDA Pro MCP_set_function_prototype

Set a function's prototype

MCP SNS Server_list_proposals

List all proposals

MCP SNS Server_list_votable_neurons

List all votable neurons

MCP Think Tool Server_think

Use this tool to think about something. It will not obtain new information or change anything, but just append the thought to the log. Use it when complex reasoning or cache memory is needed.

Args: thought: A thought to think about. This can be structured reasoning, step-by-step analysis, policy verification, or any other mental process that helps with problem-solving.
MCP Think Tool Server_get_thoughts

Retrieve all thoughts recorded in the current session. This tool helps review the thinking process that has occurred so far.

MCP Think Tool Server_clear_thoughts

Clear all recorded thoughts from the current session. Use this to start fresh if the thinking process needs to be reset.

Elasticsearch MCP Server_list_indices

List all available Elasticsearch indices

Elasticsearch MCP Server_get_mappings

Get field mappings for a specific Elasticsearch index

Elasticsearch MCP Server_search

Perform an Elasticsearch search with the provided query DSL. Highlights are always enabled.

MCP-Devin_get_devin_session

Get information about an existing Devin session and optionally fetch associated Slack messages

MCP-Devin_list_devin_sessions

List all Devin sessions

MCP-Devin_create_devin_session

Create a new Devin session for code development and post the task to Slack. Note: This is the recommended approach as it will automatically post your task to Slack as @Devin mention. Please craft your request to Devin in the same language that the user is using to communicate with you, maintaining language consistency throughout the experience.

MCP-Devin_send_message_to_session

Send a message to an existing Devin session and optionally to the associated Slack thread

MCP-Devin_get_organization_info

Get information about the current Devin organization

Reddit MCP_get_submission
Retrieve a specific submission by ID. Args: submission_id: ID of the submission to retrieve Returns: Detailed information about the submission
Reddit MCP_get_subreddit
Retrieve a subreddit by name. Args: subreddit_name: Name of the subreddit to retrieve Returns: Detailed information about the subreddit
Reddit MCP_get_comments_by_submission
Retrieve comments from a specific submission. Args: submission_id: ID of the submission to get comments from replace_more: Whether to replace MoreComments objects with actual comments Returns: List of comments with their replies
Reddit MCP_get_comment_by_id
Retrieve a specific comment by ID. Args: comment_id: ID of the comment to retrieve Returns: Comment details with any replies
Reddit MCP_search_posts
Search for posts within a subreddit. Args: params: Search parameters including subreddit name, query, and filters Returns: List of matching posts with their details
Reddit MCP_search_subreddits
Search for subreddits using either name-based or description-based search. Args: by: Search parameters, either SearchByName or SearchByDescription Returns: List of matching subreddits with their details
MCP Server Trello_get_cards_by_list_id

Fetch cards from a specific Trello list

MCP Server Trello_get_lists

Retrieve all lists from the specified board

MCP Server Trello_get_recent_activity

Fetch recent activity on the Trello board

MCP Server Trello_add_card_to_list

Add a new card to a specified list

MCP Server Trello_update_card_details

Update an existing card's details

MCP Server Trello_archive_card

Send a card to the archive

MCP Server Trello_add_list_to_board

Add a new list to the board

MCP Server Trello_archive_list

Send a list to the archive

MCP Server Trello_get_my_cards

Fetch all cards assigned to the current user

MCP Sequential Thinking Tools_sequentialthinking_tools

A detailed tool for dynamic and reflective problem-solving through thoughts. This tool helps analyze problems through a flexible thinking process that can adapt and evolve. Each thought can build on, question, or revise previous insights as understanding deepens.

IMPORTANT: When initializing this tool, you must pass all available tools that you want the sequential thinking process to be able to use. The tool will analyze these tools and provide recommendations for their use.

When to use this tool:

  • Breaking down complex problems into steps
  • Planning and design with room for revision
  • Analysis that might need course correction
  • Problems where the full scope might not be clear initially
  • Problems that require a multi-step solution
  • Tasks that need to maintain context over multiple steps
  • Situations where irrelevant information needs to be filtered out
  • When you need guidance on which tools to use and in what order

Key features:

  • You can adjust total_thoughts up or down as you progress
  • You can question or revise previous thoughts
  • You can add more thoughts even after reaching what seemed like the end
  • You can express uncertainty and explore alternative approaches
  • Not every thought needs to build linearly - you can branch or backtrack
  • Generates a solution hypothesis
  • Verifies the hypothesis based on the Chain of Thought steps
  • Recommends appropriate tools for each step
  • Provides rationale for tool recommendations
  • Suggests tool execution order and parameters
  • Tracks previous recommendations and remaining steps

Parameters explained:

  • thought: Your current thinking step, which can include:
  • Regular analytical steps
  • Revisions of previous thoughts
  • Questions about previous decisions
  • Realizations about needing more analysis
  • Changes in approach
  • Hypothesis generation
  • Hypothesis verification
  • Tool recommendations and rationale
  • next_thought_needed: True if you need more thinking, even if at what seemed like the end
  • thought_number: Current number in sequence (can go beyond initial total if needed)
  • total_thoughts: Current estimate of thoughts needed (can be adjusted up/down)
  • is_revision: A boolean indicating if this thought revises previous thinking
  • revises_thought: If is_revision is true, which thought number is being reconsidered
  • branch_from_thought: If branching, which thought number is the branching point
  • branch_id: Identifier for the current branch (if any)
  • needs_more_thoughts: If reaching end but realizing more thoughts needed
  • current_step: Current step recommendation, including:
  • step_description: What needs to be done
  • recommended_tools: Tools recommended for this step
  • expected_outcome: What to expect from this step
  • next_step_conditions: Conditions to consider for the next step
  • previous_steps: Steps already recommended
  • remaining_steps: High-level descriptions of upcoming steps

You should:

  1. Start with an initial estimate of needed thoughts, but be ready to adjust
  2. Feel free to question or revise previous thoughts
  3. Don't hesitate to add more thoughts if needed, even at the "end"
  4. Express uncertainty when present
  5. Mark thoughts that revise previous thinking or branch into new paths
  6. Ignore information that is irrelevant to the current step
  7. Generate a solution hypothesis when appropriate
  8. Verify the hypothesis based on the Chain of Thought steps
  9. Consider available tools that could help with the current step
  10. Provide clear rationale for tool recommendations
  11. Suggest specific tool parameters when appropriate
  12. Consider alternative tools for each step
  13. Track progress through the recommended steps
  14. Provide a single, ideally correct answer as the final output
  15. Only set next_thought_needed to false when truly done and a satisfactory answer is reached
OceanBase MCP Server_execute_sql

Execute an SQL query on the OceanBase server

Texas Holdem MCP Server_login

login and list all tables in the poker game

Texas Holdem MCP Server_join_table

Join a poker table

Texas Holdem MCP Server_get_table_status

Get the current status of a poker table

Texas Holdem MCP Server_leave_table

Leave a poker table

Texas Holdem MCP Server_action_check

do action check

Texas Holdem MCP Server_action_fold

do action fold

Texas Holdem MCP Server_action_bet

do action bet

Texas Holdem MCP Server_action_raise

do action raise

Texas Holdem MCP Server_action_call

do action call

Terrakube MCP Server_list-variables

Lists all variables in the specified workspace

Terrakube MCP Server_list-organizations

Lists all organizations accessible to the current user

Terrakube MCP Server_get-organization

Retrieves detailed information about a specific organization by its ID

Terrakube MCP Server_create-organization

Creates a new organization with the specified name and optional description

Terrakube MCP Server_edit-organization

Updates an existing organization's details

Terrakube MCP Server_list-workspaces

Lists all workspaces in the specified organization

Terrakube MCP Server_get-workspace

Retrieves detailed information about a specific workspace

Terrakube MCP Server_create-workspace

Creates a new workspace in the specified organization

Terrakube MCP Server_edit-workspace

Updates an existing workspace's details

Terrakube MCP Server_list-modules

Lists all modules in the specified organization

Terrakube MCP Server_get-module

Retrieves detailed information about a specific module

Terrakube MCP Server_create-module

Creates a new module in the specified organization

Terrakube MCP Server_edit-module

Updates an existing module's details

Terrakube MCP Server_get-variable

Retrieves detailed information about a specific variable

Terrakube MCP Server_create-variable

Creates a new variable in the specified workspace

Terrakube MCP Server_edit-variable

Updates an existing variable's details

Taiga MCP Bridge_login

Logs into a Taiga instance using username/password and returns a session_id for subsequent authenticated calls.

Taiga MCP Bridge_list_projects

Lists projects accessible to the user associated with the provided session_id.

Taiga MCP Bridge_list_all_projects

Lists all projects visible to the user (requires admin privileges for full list). Uses the provided session_id.

Taiga MCP Bridge_get_project

Gets detailed information about a specific project by its ID.

Taiga MCP Bridge_get_project_by_slug

Gets detailed information about a specific project by its slug.

Taiga MCP Bridge_update_project

Updates details of an existing project.

Taiga MCP Bridge_delete_project

Deletes a project by its ID. This is irreversible.

Taiga MCP Bridge_get_project_roles

Lists the available roles within a specific project.

Taiga MCP Bridge_list_user_stories

Lists user stories within a specific project, optionally filtered.

Taiga MCP Bridge_create_user_story

Creates a new user story within a project.

Taiga MCP Bridge_get_user_story

Gets detailed information about a specific user story by its ID.

Taiga MCP Bridge_get_user_story_by_ref

Gets detailed information about a specific user story by its reference number within a project.

Taiga MCP Bridge_update_user_story

Updates details of an existing user story.

Taiga MCP Bridge_delete_user_story

Deletes a user story by its ID.

Taiga MCP Bridge_assign_user_story_to_user

Assigns a specific user story to a specific user.

Taiga MCP Bridge_unassign_user_story_from_user

Unassigns a specific user story (sets assigned user to null).

Taiga MCP Bridge_get_user_story_statuses

Lists the available statuses for user stories within a specific project.

Taiga MCP Bridge_list_tasks

Lists tasks within a specific project, optionally filtered.

Taiga MCP Bridge_create_task

Creates a new task within a project.

Taiga MCP Bridge_get_task

Gets detailed information about a specific task by its ID.

Taiga MCP Bridge_get_task_by_ref

Gets detailed information about a specific task by its reference number within a project.

Taiga MCP Bridge_update_task

Updates details of an existing task.

Taiga MCP Bridge_delete_task

Deletes a task by its ID.

Taiga MCP Bridge_assign_task_to_user

Assigns a specific task to a specific user.

Taiga MCP Bridge_unassign_task_from_user

Unassigns a specific task (sets assigned user to null).

Taiga MCP Bridge_get_task_statuses

Lists the available statuses for tasks within a specific project.

Taiga MCP Bridge_list_issues

Lists issues within a specific project, optionally filtered.

Taiga MCP Bridge_create_issue

Creates a new issue within a project.

Taiga MCP Bridge_get_issue

Gets detailed information about a specific issue by its ID.

Taiga MCP Bridge_get_issue_by_ref

Gets detailed information about a specific issue by its reference number within a project.

Taiga MCP Bridge_update_issue

Updates details of an existing issue.

Taiga MCP Bridge_delete_issue

Deletes an issue by its ID.

Taiga MCP Bridge_get_project_members

Lists members of a specific project.

Taiga MCP Bridge_assign_issue_to_user

Assigns a specific issue to a specific user.

Taiga MCP Bridge_unassign_issue_from_user

Unassigns a specific issue (sets assigned user to null).

Taiga MCP Bridge_get_issue_statuses

Lists the available statuses for issues within a specific project.

Taiga MCP Bridge_get_issue_priorities

Lists the available priorities for issues within a specific project.

Taiga MCP Bridge_get_issue_severities

Lists the available severities for issues within a specific project.

Taiga MCP Bridge_get_issue_types

Lists the available types for issues within a specific project.

Taiga MCP Bridge_list_epics

Lists epics within a specific project, optionally filtered.

Taiga MCP Bridge_create_epic

Creates a new epic within a project.

Taiga MCP Bridge_get_epic

Gets detailed information about a specific epic by its ID.

Taiga MCP Bridge_get_epic_by_ref

Gets detailed information about a specific epic by its reference number within a project.

Taiga MCP Bridge_update_epic

Updates details of an existing epic.

Taiga MCP Bridge_delete_epic

Deletes an epic by its ID.

Taiga MCP Bridge_assign_epic_to_user

Assigns a specific epic to a specific user.

Taiga MCP Bridge_unassign_epic_from_user

Unassigns a specific epic (sets assigned user to null).

Taiga MCP Bridge_get_epic_statuses

Lists the available statuses for epics within a specific project.

Taiga MCP Bridge_list_milestones

Lists milestones (sprints) within a specific project.

Taiga MCP Bridge_create_milestone

Creates a new milestone (sprint) within a project.

Taiga MCP Bridge_get_milestone

Gets detailed information about a specific milestone by its ID.

Taiga MCP Bridge_update_milestone

Updates details of an existing milestone.

Taiga MCP Bridge_delete_milestone

Deletes a milestone by its ID.

Taiga MCP Bridge_get_milestone_stats

Gets statistics (total points, completed points, etc.) for a specific milestone.

Taiga MCP Bridge_invite_project_user

Invites a user to a project by email with a specific role.

Taiga MCP Bridge_list_wiki_pages

Lists wiki pages within a specific project.

Taiga MCP Bridge_get_wiki_page

Gets a specific wiki page by its ID.

Taiga MCP Bridge_get_wiki_page_by_slug

Gets a specific wiki page by its slug within a project.

Taiga MCP Bridge_logout

Invalidates the current session_id.

Taiga MCP Bridge_session_status

Checks if the provided session_id is currently active and valid.

HubSpot MCP Server_hubspot_create_contact

Create a new contact in HubSpot

HubSpot MCP Server_hubspot_create_company

Create a new company in HubSpot

HubSpot MCP Server_hubspot_get_company_activity

Get activity history for a specific company

HubSpot MCP Server_hubspot_get_recent_engagements

Get recent engagement activities across all contacts and companies

HubSpot MCP Server_hubspot_get_active_companies

Get most recently active companies from HubSpot

HubSpot MCP Server_hubspot_get_active_contacts

Get most recently active contacts from HubSpot

HubSpot MCP Server_create_shared_summary

Create a new conversation summary in the shared space

HubSpot MCP Server_get_shared_summaries

Retrieve all conversation summaries for the company

EdgeOne Pages MCP_deploy-html

Deploy HTML content to EdgeOne Pages, return the public URL

Figma MCP Server with Chunking_get_components

Get components from a Figma file

Figma MCP Server with Chunking_get_styles

Get styles from a Figma file

Figma MCP Server with Chunking_get_file_versions

Get version history of a Figma file

Figma MCP Server with Chunking_get_file_comments

Get comments on a Figma file

Figma MCP Server with Chunking_get_file_data

Get Figma file data with chunking and pagination

Figma MCP Server with Chunking_list_files

List files in a project or team

Figma MCP Server with Chunking_get_file_nodes

Get specific nodes from a Figma file

PowerPoint MCP Server_open-presentation

Opens an existing presentation and saves a copy to a new file for backup. Use this tool when the user requests to open a presentation that has already been created.

PowerPoint MCP Server_save-presentation

Save the presentation to a file. Always use this tool at the end of any process that has added slides to a presentation.

PowerPoint MCP Server_add-slide-title-content

Add a new slide with a title and content to an existing presentation

PowerPoint MCP Server_create-presentation

This tool starts the process of generating a new powerpoint presentation with the name given by the user. Use this tool when the user requests to create or generate a new presentation.

PowerPoint MCP Server_generate-and-save-image

Generates an image using a FLUX model and save the image to the specified path. The tool will return a PNG file path. It should be used when the user asks to generate or create an image or a picture.

PowerPoint MCP Server_add-slide-title-only

This tool adds a new title slide to the presentation you are working on. The tool doesn't return anything. It requires the presentation_name to work on.

PowerPoint MCP Server_add-slide-section-header

This tool adds a section header (a.k.a segue) slide to the presentation you are working on. The tool doesn't return anything. It requires the presentation_name to work on.

PowerPoint MCP Server_add-slide-comparison

Add a new a comparison slide with title and comparison content. Use when you wish to compare two concepts

PowerPoint MCP Server_add-slide-title-with-table

Add a new slide with a title and table containing the provided data

PowerPoint MCP Server_add-slide-title-with-chart

Add a new slide with a title and chart. The chart type will be automatically selected based on the data structure.

PowerPoint MCP Server_add-slide-picture-with-caption

Add a new slide with a picture and caption to an existing presentation

Atlassian Bitbucket MCP Server_list-workspaces

List Bitbucket workspaces available to your account.

PURPOSE: Discovers workspaces you have access to with their slugs, names, and permission levels to help navigate Bitbucket's organization structure.

WHEN TO USE:

  • When you need to discover what workspaces exist in your Bitbucket account
  • When you want to find the slugs needed for other Bitbucket operations
  • When you need to check what workspaces you have access to and their permission levels
  • Before accessing repositories or pull requests that require workspace information
  • When you're unfamiliar with the workspace organization structure

WHEN NOT TO USE:

  • When you already know the workspace slug (use get-workspace or list-repositories instead)
  • When you need detailed workspace information (use get-workspace instead)
  • When you need to find specific repositories (use list-repositories after identifying the workspace)

RETURNS: Formatted list of workspaces with slugs, names, and permission information, plus pagination details if available.

EXAMPLES:

  • List all workspaces: {}
  • With sorting: {sort: "name"}
  • With pagination: {limit: 10, cursor: "next-page-token"}

ERRORS:

  • Authentication failures: Check your Bitbucket credentials
  • No workspaces found: You might not have access to any workspaces
  • Rate limiting: Use pagination and reduce query frequency
Atlassian Bitbucket MCP Server_get-workspace

Get detailed information about a specific Bitbucket workspace by slug.

PURPOSE: Retrieves comprehensive workspace metadata including projects, permissions, and configuration.

WHEN TO USE:

  • When you need detailed information about a specific workspace
  • When you need to check workspace permissions or membership
  • When you need to verify workspace settings or configuration
  • After using list-workspaces to identify the relevant workspace
  • Before performing operations that require detailed workspace context

WHEN NOT TO USE:

  • When you don't know which workspace to look for (use list-workspaces first)
  • When you just need basic workspace information (slug, name)
  • When you're only interested in repositories (use list-repositories directly)

RETURNS: Detailed workspace information including slug, name, type, description, projects, and permission levels.

EXAMPLES:

  • Get workspace: {workspace: "myteam"}

ERRORS:

  • Workspace not found: Verify the workspace slug is correct
  • Permission errors: Ensure you have access to the requested workspace
  • Rate limiting: Cache workspace information when possible
Atlassian Bitbucket MCP Server_list-repositories

List Bitbucket repositories within a specific workspace.

PURPOSE: Discovers repositories in a workspace with their slugs, names, and URLs to help navigate code resources.

WHEN TO USE:

  • When you need to find repositories within a specific workspace
  • When you need repository slugs for other Bitbucket operations
  • When you want to explore available repositories before accessing specific content
  • When you need to check repository visibility and access levels
  • When looking for repositories with specific characteristics (language, size, etc.)

WHEN NOT TO USE:

  • When you don't know which workspace to look for repos in (use list-workspaces first)
  • When you already know the repository slug (use get-repository instead)
  • When you need detailed repository information (use get-repository instead)
  • When you need to access pull requests or branches (use dedicated tools after identifying the repo)

RETURNS: Formatted list of repositories with slugs, names, descriptions, URLs, and metadata, plus pagination info.

EXAMPLES:

  • List all repos in workspace: {workspace: "myteam"}
  • With sorting: {workspace: "myteam", sort: "name"}
  • With filtering: {workspace: "myteam", query: "api"}
  • With pagination: {workspace: "myteam", limit: 10, cursor: "next-page-token"}

ERRORS:

  • Workspace not found: Verify the workspace slug is correct
  • Authentication failures: Check your Bitbucket credentials
  • Permission errors: Ensure you have access to the requested workspace
  • Rate limiting: Use pagination and reduce query frequency
Atlassian Bitbucket MCP Server_get-repository

Get detailed information about a specific Bitbucket repository.

PURPOSE: Retrieves comprehensive repository metadata including branches, settings, permissions, and more.

WHEN TO USE:

  • When you need detailed information about a specific repository
  • When you need repository URLs, clone links, or other reference information
  • When you need to check repository settings or permissions
  • After using list-repositories to identify the relevant repository
  • Before performing operations that require repository context (PRs, branches)

WHEN NOT TO USE:

  • When you don't know which repository to look for (use list-repositories first)
  • When you just need basic repository information
  • When you're looking for pull request details (use list-pullrequests instead)
  • When you need content from multiple repositories (use list-repositories instead)

RETURNS: Detailed repository information including slug, name, description, URLs, branch information, and settings.

EXAMPLES:

  • Get repository: {workspace: "myteam", repoSlug: "project-api"}

ERRORS:

  • Repository not found: Verify workspace and repository slugs
  • Permission errors: Ensure you have access to the requested repository
  • Rate limiting: Cache repository information when possible
Atlassian Bitbucket MCP Server_list-pull-requests

List Bitbucket pull requests with optional filtering capabilities.

PURPOSE: Allows you to find and browse pull requests across repositories with filtering options.

WHEN TO USE:

  • When you need to find pull requests within a specific repository
  • When you want to check PR status (open, merged, declined, etc.)
  • When you need to track code review activity and progress
  • When you need PR IDs for other Bitbucket operations
  • When monitoring contributions from specific authors

WHEN NOT TO USE:

  • When you don't know which repository to look in (use list-repositories first)
  • When you already know the PR ID (use get-pull-request instead)
  • When you need detailed PR content or comments (use get-pull-request instead)
  • When you need to browse repositories rather than PRs (use list-repositories)

RETURNS: Formatted list of pull requests with IDs, titles, states, authors, branch information, and URLs, plus pagination info.

EXAMPLES:

  • List all PRs in a repo: {workspace: "myteam", repoSlug: "project-api"}
  • Filter by state: {workspace: "myteam", repoSlug: "project-api", state: "OPEN"}
  • With pagination: {workspace: "myteam", repoSlug: "project-api", limit: 10, cursor: "next-page-token"}

ERRORS:

  • Repository not found: Verify workspace and repository slugs
  • Authentication failures: Check your Bitbucket credentials
  • Permission errors: Ensure you have access to the requested repository
  • Rate limiting: Use pagination and reduce query frequency
Atlassian Bitbucket MCP Server_get-pull-request

Get detailed information about a specific Bitbucket pull request.

PURPOSE: Retrieves comprehensive PR data including description, comments, diff stats, reviewers, and branch information.

WHEN TO USE:

  • When you need the full description and context of a specific PR
  • When you need to see comments, reviews, or approvals
  • When you need details about the source and destination branches
  • When you need diff statistics or changed files information
  • After using list-pull-requests to identify the relevant PR ID

WHEN NOT TO USE:

  • When you don't know which PR to look for (use list-pull-requests first)
  • When you need to browse multiple PRs (use list-pull-requests instead)
  • When you only need basic PR information without comments or details
  • When you need repository information rather than PR details (use get-repository)

RETURNS: Detailed PR information including title, description, status, author, reviewers, branches, comments, and related timestamps.

EXAMPLES:

  • Get PR details: {workspace: "myteam", repoSlug: "project-api", id: 42}

ERRORS:

  • PR not found: Verify workspace, repository slugs, and PR ID
  • Permission errors: Ensure you have access to the requested PR
  • Rate limiting: Cache PR information when possible for frequently referenced PRs
Base Network MCP Server_process_command

Process a natural language command for Base network operations

Base Network MCP Server_create_wallet

Create a new wallet

Base Network MCP Server_check_balance

Check wallet balance

Base Network MCP Server_list_wallets

List all available wallets

GitLab MCP Server_gitlab_list_group_members

List members of a group

GitLab MCP Server_gitlab_list_users

List GitLab users

GitLab MCP Server_gitlab_get_user

Get details of a specific user

GitLab MCP Server_gitlab_list_groups

List GitLab groups

GitLab MCP Server_gitlab_get_cicd_variable

Get a specific CI/CD variable

GitLab MCP Server_gitlab_list_projects

List GitLab projects accessible to the user

GitLab MCP Server_gitlab_get_project

Get details of a specific GitLab project

GitLab MCP Server_gitlab_list_branches

List branches of a GitLab project

GitLab MCP Server_gitlab_list_merge_requests

List merge requests in a GitLab project

GitLab MCP Server_gitlab_get_merge_request

Get details of a specific merge request

GitLab MCP Server_gitlab_get_merge_request_changes

Get changes (diff) of a specific merge request

GitLab MCP Server_gitlab_create_merge_request_note

Add a comment to a merge request

GitLab MCP Server_gitlab_create_merge_request_note_internal

Add a comment to a merge request with option to make it an internal note

GitLab MCP Server_gitlab_update_merge_request

Update a merge request title and description

GitLab MCP Server_gitlab_list_issues

List issues in a GitLab project

GitLab MCP Server_gitlab_get_repository_file

Get content of a file in a repository

GitLab MCP Server_gitlab_compare_branches

Compare branches, tags or commits

GitLab MCP Server_gitlab_list_integrations

List all available project integrations/services

GitLab MCP Server_gitlab_get_integration

Get integration details for a project

GitLab MCP Server_gitlab_update_slack_integration

Update Slack integration settings for a project

GitLab MCP Server_gitlab_disable_slack_integration

Disable Slack integration for a project

GitLab MCP Server_gitlab_list_webhooks

List webhooks for a project

GitLab MCP Server_gitlab_get_webhook

Get details of a specific webhook

GitLab MCP Server_gitlab_add_webhook

Add a new webhook to a project

GitLab MCP Server_gitlab_update_webhook

Update an existing webhook

GitLab MCP Server_gitlab_delete_webhook

Delete a webhook

GitLab MCP Server_gitlab_test_webhook

Test a webhook

GitLab MCP Server_gitlab_list_trigger_tokens

List pipeline trigger tokens

GitLab MCP Server_gitlab_get_trigger_token

Get details of a pipeline trigger token

GitLab MCP Server_gitlab_create_trigger_token

Create a new pipeline trigger token

GitLab MCP Server_gitlab_update_trigger_token

Update a pipeline trigger token

GitLab MCP Server_gitlab_delete_trigger_token

Delete a pipeline trigger token

GitLab MCP Server_gitlab_trigger_pipeline

Trigger a pipeline run

GitLab MCP Server_gitlab_list_cicd_variables

List CI/CD variables for a project

GitLab MCP Server_gitlab_create_cicd_variable

Create a new CI/CD variable

GitLab MCP Server_gitlab_update_cicd_variable

Update a CI/CD variable

GitLab MCP Server_gitlab_delete_cicd_variable

Delete a CI/CD variable

GitLab MCP Server_gitlab_get_group

Get details of a specific group

GitLab MCP Server_gitlab_add_group_member

Add a user to a group

GitLab MCP Server_gitlab_list_project_members

List members of a project

GitLab MCP Server_gitlab_add_project_member

Add a user to a project

MRP Calculator MCP Server_calculate_order_need

Calculate MRP order need based on forecast, inventory, and delivery schedule

Notes MCP Server_add-note

Add a new note

ServiceNow MCP Server_update_catalog_item

Update a service catalog item.

ServiceNow MCP Server_create_incident

Create a new incident in ServiceNow

ServiceNow MCP Server_update_incident

Update an existing incident in ServiceNow

ServiceNow MCP Server_add_comment

Add a comment to an incident in ServiceNow

ServiceNow MCP Server_resolve_incident

Resolve an incident in ServiceNow

ServiceNow MCP Server_list_incidents

List incidents from ServiceNow

ServiceNow MCP Server_list_catalog_items

List service catalog items.

ServiceNow MCP Server_get_catalog_item

Get a specific service catalog item.

ServiceNow MCP Server_list_catalog_categories

List service catalog categories.

ServiceNow MCP Server_create_catalog_category

Create a new service catalog category.

ServiceNow MCP Server_update_catalog_category

Update an existing service catalog category.

ServiceNow MCP Server_move_catalog_items

Move catalog items to a different category.

ServiceNow MCP Server_get_optimization_recommendations

Get optimization recommendations for the service catalog.

ServiceNow MCP Server_create_change_request

Create a new change request in ServiceNow

ServiceNow MCP Server_update_change_request

Update an existing change request in ServiceNow

ServiceNow MCP Server_list_change_requests

List change requests from ServiceNow

ServiceNow MCP Server_get_change_request_details

Get detailed information about a specific change request

ServiceNow MCP Server_add_change_task

Add a task to a change request

ServiceNow MCP Server_delete_script_include-
ServiceNow MCP Server_submit_change_for_approval

Submit a change request for approval

ServiceNow MCP Server_approve_change

Approve a change request

ServiceNow MCP Server_reject_change

Reject a change request

ServiceNow MCP Server_list_workflows

List workflows from ServiceNow

ServiceNow MCP Server_get_workflow_details

Get detailed information about a specific workflow

ServiceNow MCP Server_list_workflow_versions

List workflow versions from ServiceNow

ServiceNow MCP Server_get_workflow_activities

Get activities for a specific workflow

ServiceNow MCP Server_create_workflow

Create a new workflow in ServiceNow

ServiceNow MCP Server_create_changeset

Create a new changeset in ServiceNow

ServiceNow MCP Server_update_workflow

Update an existing workflow in ServiceNow

ServiceNow MCP Server_activate_workflow

Activate a workflow in ServiceNow

ServiceNow MCP Server_deactivate_workflow

Deactivate a workflow in ServiceNow

ServiceNow MCP Server_add_workflow_activity

Add a new activity to a workflow in ServiceNow

ServiceNow MCP Server_update_workflow_activity

Update an existing activity in a workflow

ServiceNow MCP Server_delete_workflow_activity

Delete an activity from a workflow

ServiceNow MCP Server_reorder_workflow_activities

Reorder activities in a workflow

ServiceNow MCP Server_list_changesets

List changesets from ServiceNow

ServiceNow MCP Server_get_changeset_details

Get detailed information about a specific changeset

ServiceNow MCP Server_update_changeset

Update an existing changeset in ServiceNow

ServiceNow MCP Server_commit_changeset

Commit a changeset in ServiceNow

ServiceNow MCP Server_publish_changeset

Publish a changeset in ServiceNow

ServiceNow MCP Server_remove_group_members-
ServiceNow MCP Server_add_file_to_changeset

Add a file to a changeset in ServiceNow

ServiceNow MCP Server_list_script_includes

List script includes from ServiceNow

ServiceNow MCP Server_get_script_include

Get a specific script include from ServiceNow

ServiceNow MCP Server_create_script_include

Create a new script include in ServiceNow

ServiceNow MCP Server_update_script_include

Update an existing script include in ServiceNow

ServiceNow MCP Server_create_knowledge_base

Create a new knowledge base in ServiceNow

ServiceNow MCP Server_list_knowledge_bases

List knowledge bases from ServiceNow

ServiceNow MCP Server_create_category

Create a new category in a knowledge base

ServiceNow MCP Server_create_article

Create a new knowledge article

ServiceNow MCP Server_update_article

Update an existing knowledge article

ServiceNow MCP Server_publish_article

Publish a knowledge article

ServiceNow MCP Server_list_articles

List knowledge articles

ServiceNow MCP Server_get_article

Get a specific knowledge article by ID

ServiceNow MCP Server_list_categories

List categories in a knowledge base

ServiceNow MCP Server_create_user-
ServiceNow MCP Server_update_user-
ServiceNow MCP Server_get_user-
ServiceNow MCP Server_list_users-
ServiceNow MCP Server_create_group-
ServiceNow MCP Server_update_group-
ServiceNow MCP Server_add_group_members-
FirstCycling MCP Server_get_rider_year_results

Retrieve detailed results for a professional cyclist for a specific year. This tool provides comprehensive information about a rider's performance in all races during a given calendar year. It includes positions achieved, race categories, dates, and additional details.

Note: If you don't know the rider's ID, use the search_rider tool first to find it by name. Example usage: - Get 2023 results for Tadej Pogaar (ID: 16973) - Get 2022 results for Jonas Vingegaard (ID: 16974) Returns a formatted string with: - Complete results for the specified year - Position and time for each race - Race category and details - Chronological organization by date
FirstCycling MCP Server_get_rider_victories

Get a comprehensive list of a rider's UCI victories. This tool retrieves detailed information about all UCI-registered race victories achieved by the cyclist throughout their career. Victories can be filtered to show only WorldTour wins if desired.

Note: If you don't know the rider's ID, use the search_rider tool first to find it by name. Example usage: - Get all UCI victories for Tadej Pogaar (ID: 16973) - Get WorldTour victories for Jonas Vingegaard (ID: 16974) Returns a formatted string with: - Complete list of victories - Race details including category - Date and year of each victory - Option to filter by WorldTour races only
FirstCycling MCP Server_get_rider_teams

Get a detailed history of a professional cyclist's team affiliations throughout their career. This tool provides a chronological list of all teams the rider has been part of, including years and team details.

Note: If you don't know the rider's ID, use the search_rider tool first to find it by name. Example usage: - Get team history for Peter Sagan (ID: 12345) - Get career team changes for Chris Froome (ID: 67890) Returns a formatted string with: - Complete team history - Years with each team - Team names and details - Chronological organization
FirstCycling MCP Server_search_rider

Search for professional cyclists by name. This tool helps find riders by their name, returning a list of matching riders with their IDs and basic information. This is useful when you need a rider's ID for other operations but only know their name.

Example usage: - Search for "Tadej Pogacar" to find Tadej Pogaar's ID - Search for "Van Aert" to find Wout van Aert's ID Returns a formatted string with: - List of matching riders - Each rider's ID, name, nationality, and current team - Number of matches found
FirstCycling MCP Server_get_rider_info

Get comprehensive information about a professional cyclist including their current team, nationality, date of birth, and recent race results. This tool provides a detailed overview of a rider's current status and recent performance in professional cycling races. The information includes their current team affiliation, nationality, age, and their most recent race results with positions and times.

Note: If you don't know the rider's ID, use the search_rider tool first to find it by name. Example usage: - Get basic info for Tadej Pogaar (ID: 16973) - Get basic info for Jonas Vingegaard (ID: 16974) Returns a formatted string with: - Full name and current team - Nationality and date of birth - UCI ID and social media handles - Last 5 race results with positions and times - Total number of UCI victories
FirstCycling MCP Server_get_rider_best_results

Retrieve the best career results of a professional cyclist, including their top finishes in various races. This tool provides a comprehensive overview of a rider's most significant achievements throughout their career, including their highest positions in major races, stage wins, and overall classifications. Results are sorted by importance and include detailed information about each race.

Note: If you don't know the rider's ID, use the search_rider tool first to find it by name. Example usage: - Get top 10 best results for Tadej Pogaar (ID: 16973) - Get top 5 best results for Jonas Vingegaard (ID: 16974) Returns a formatted string with: - Rider's name and career highlights - Top results sorted by importance - Race details including category and country - Date and position for each result
FirstCycling MCP Server_get_rider_grand_tour_results

Get comprehensive results for a rider in Grand Tours (Tour de France, Giro d'Italia, and Vuelta a Espaa). This tool provides detailed information about a rider's performance in cycling's most prestigious three-week races, including their overall classification positions, stage wins, and special classification results. The data is organized chronologically and includes all relevant race details.

Note: If you don't know the rider's ID, use the search_rider tool first to find it by name. Example usage: - Get Grand Tour results for Tadej Pogaar (ID: 16973) - Get Grand Tour results for Jonas Vingegaard (ID: 16974) Returns a formatted string with: - Results for each Grand Tour (Tour de France, Giro, Vuelta) - Overall classification positions - Stage wins and special classification results - Time gaps and race details
FirstCycling MCP Server_get_rider_monument_results

Retrieve detailed results for a rider in cycling's five Monument races (Milan-San Remo, Tour of Flanders, Paris-Roubaix, Lige-Bastogne-Lige, and Il Lombardia). These are the most prestigious one-day races in professional cycling. The tool provides comprehensive information about a rider's performance in these historic races, including their positions, times, and any special achievements.

Note: If you don't know the rider's ID, use the search_rider tool first to find it by name. Example usage: - Get Monument results for Tadej Pogaar (ID: 16973) - Get Monument results for Mathieu van der Poel (ID: 16975) Returns a formatted string with: - Results for each Monument race - Position and time for each participation - Race details and special achievements - Chronological organization by year
FirstCycling MCP Server_get_rider_team_and_ranking

Get information about a professional cyclist's team affiliations and UCI rankings throughout their career. This tool retrieves the rider's team history and their UCI ranking points over time. It provides a comprehensive overview of their professional career progression through different teams and their performance in the UCI rankings.

Note: If you don't know the rider's ID, use the search_rider tool first to find it by name. Example usage: - Get team and ranking history for Tadej Pogaar (ID: 16973) - Get team and ranking history for Jonas Vingegaard (ID: 16974) Returns a formatted string with: - Complete team history with years - UCI ranking positions and points - Career progression timeline - Current team and ranking status
FirstCycling MCP Server_get_rider_race_history

Get the complete race history of a professional cyclist, optionally filtered by year. This tool retrieves a comprehensive list of all races the rider has participated in, including their positions, times, and race categories. It provides a detailed overview of their racing career.

Note: If you don't know the rider's ID, use the search_rider tool first to find it by name. Example usage: - Get complete race history for Tadej Pogaar (ID: 16973) - Get 2023 race history for Jonas Vingegaard (ID: 16974) Returns a formatted string with: - All races organized by year - Position and time for each race - Race category and details - Chronological organization
FirstCycling MCP Server_search_race

Search for cycling races by name. This tool helps find races by their name, returning a list of matching races with their IDs and countries. This is useful when you know a race's name but need its ID for other operations.

Example usage: - Search for "tour" to find Tour de France and other tours - Search for "giro" to find Giro d'Italia Returns a formatted string with: - List of matching races - Each race's ID, name, and country - Number of matches found
FirstCycling MCP Server_get_rider_one_day_races

Get a rider's results in one-day races, optionally filtered by year. This tool retrieves detailed information about a rider's performance in one-day races (classics and one-day events). It provides comprehensive data about positions, times, and race categories. Results can be filtered by a specific year.

Note: If you don't know the rider's ID, use the search_rider tool first to find it by name. Example usage: - Get one-day race results for Mathieu van der Poel (ID: 16672) - Get 2023 one-day race results for Wout van Aert (ID: 16948) Returns a formatted string with: - Results in one-day races organized by year - Position and time for each race - Race category and details - Chronological organization
FirstCycling MCP Server_get_rider_stage_races

Get a rider's results in stage races, optionally filtered by year. This tool retrieves detailed information about a rider's performance in stage races (multi-day races like Tour de France, Giro d'Italia, etc.). It provides comprehensive data about positions, times, and race categories. Results can be filtered by a specific year.

Note: If you don't know the rider's ID, use the search_rider tool first to find it by name. Example usage: - Get stage race results for Tadej Pogaar (ID: 16973) - Get 2023 stage race results for Jonas Vingegaard (ID: 16974) Returns a formatted string with: - Results in stage races organized by year - Position and time for each race - Race category and details - Chronological organization
FirstCycling MCP Server_get_race_details

Get comprehensive details about a cycling race. This tool provides detailed information about a specific race, including its history, key statistics, route details, and other relevant information. The data can be filtered by specific classification.

Note: If you don't know the race's ID, use the search_race tool first to find it by name. Example usage: - Get details for Tour de France (ID: 17) - Get details for Paris-Roubaix (ID: 30) Returns a formatted string with: - Race name, country, and category - Historical information and key statistics - Course details and characteristics - Optional classification details
FirstCycling MCP Server_get_race_edition_results

Get detailed results for a specific edition of a cycling race. This tool provides comprehensive results for a particular edition of a race, including rankings, time gaps, and other relevant statistics. Results can be filtered by classification or stage.

Note: If you don't know the race's ID, use the search_race tool first to find it by name. Example usage: - Get 2023 Tour de France general classification results (Race ID: 17, Year: 2023) - Get 2022 Paris-Roubaix results (Race ID: 30, Year: 2022) - Get results for stage 5 of 2023 Tour de France (Race ID: 17, Year: 2023, Stage: 5) Returns a formatted string with: - Race name, year, and category - Complete result list with rankings and time gaps - Rider names and teams - Classification or stage specific information
FirstCycling MCP Server_get_start_list

Get the start list for a specific edition of a cycling race. The start list includes rider numbers, names, and teams.

Note: If you don't know the race's ID, use the search_race tool first to find it by name. If no year is specified, the current year will be used. Example usage: - Get start list for current year's Tour de France (Race ID: 17) - Get start list for 2023 Paris-Roubaix (Race ID: 30, Year: 2023) Returns a formatted string with: - Race name and year - List of participating teams - Riders for each team with their race numbers
FirstCycling MCP Server_get_race_victory_table

Get the all-time victory table for a cycling race. This tool provides a historical summary of the most successful riders in a specific race, showing the number of victories for each rider throughout the race's history.

Note: If you don't know the race's ID, use the search_race tool first to find it by name. Example usage: - Get victory table for Tour de France (ID: 17) - Get victory table for Paris-Roubaix (ID: 30) Returns a formatted string with: - Race name - List of riders with the most victories - Number of victories for each rider - Years of victories where available
FirstCycling MCP Server_get_uci_rankings

Get UCI rankings for riders, teams, or nations. This tool provides access to the UCI ranking data for professional cyclists, teams, or nations. Results can be filtered by ranking type, year, and category.

Example usage: - Get World UCI rider rankings for 2023 - Get Europe Tour UCI team rankings for 2022 - Get UCI nation rankings for 2023 in the World category Returns a formatted string with: - Ranking list with positions and points - Filtered by specified categories - Organized in a readable format - Option to filter by country
Poke-MCP_random-pokemon

Get a random Pokmon

Poke-MCP_random-pokemon-from-region

Get a random Pokmon from a specific region

Poke-MCP_random-pokemon-by-type

Get a random Pokmon of a specific type

Poke-MCP_pokemon-query

Answer natural language Pokmon queries

file-finder-mcp_search-files
Salesforce MCP Server_salesforce_search_objects

Search for Salesforce standard and custom objects by name pattern. Examples: 'Account' will find Account, AccountHistory; 'Order' will find WorkOrder, ServiceOrder__c etc.

Salesforce MCP Server_salesforce_describe_object

Get detailed schema metadata including all fields, relationships, and field properties of any Salesforce object. Examples: 'Account' shows all Account fields including custom fields; 'Case' shows all Case fields including relationships to Account, Contact etc.

Salesforce MCP Server_salesforce_query_records

Query records from any Salesforce object using SOQL, including relationship queries.

Examples:

  1. Parent-to-child query (e.g., Account with Contacts):
    • objectName: "Account"
    • fields: ["Name", "(SELECT Id, FirstName, LastName FROM Contacts)"]
  2. Child-to-parent query (e.g., Contact with Account details):
    • objectName: "Contact"
    • fields: ["FirstName", "LastName", "Account.Name", "Account.Industry"]
  3. Multiple level query (e.g., Contact -> Account -> Owner):
    • objectName: "Contact"
    • fields: ["Name", "Account.Name", "Account.Owner.Name"]
  4. Related object filtering:
    • objectName: "Contact"
    • fields: ["Name", "Account.Name"]
    • whereClause: "Account.Industry = 'Technology'"

Note: When using relationship fields:

  • Use dot notation for parent relationships (e.g., "Account.Name")
  • Use subqueries in parentheses for child relationships (e.g., "(SELECT Id FROM Contacts)")
  • Custom relationship fields end in "__r" (e.g., "CustomObject__r.Name")
Salesforce MCP Server_salesforce_dml_records

Perform data manipulation operations on Salesforce records:

  • insert: Create new records
  • update: Modify existing records (requires Id)
  • delete: Remove records (requires Id)
  • upsert: Insert or update based on external ID field Examples: Insert new Accounts, Update Case status, Delete old records, Upsert based on custom external ID
Salesforce MCP Server_salesforce_manage_object

Create new custom objects or modify existing ones in Salesforce:

  • Create: New custom objects with fields, relationships, and settings
  • Update: Modify existing object settings, labels, sharing model Examples: Create Customer_Feedback__c object, Update object sharing settings Note: Changes affect metadata and require proper permissions
Salesforce MCP Server_salesforce_manage_field

Create new custom fields or modify existing fields on any Salesforce object:

  • Field Types: Text, Number, Date, Lookup, Master-Detail, Picklist etc.
  • Properties: Required, Unique, External ID, Length, Scale etc.
  • Relationships: Create lookups and master-detail relationships Examples: Add Rating__c picklist to Account, Create Account lookup on Custom Object Note: Changes affect metadata and require proper permissions
Salesforce MCP Server_salesforce_search_all

Search across multiple Salesforce objects using SOSL (Salesforce Object Search Language).

Examples:

  1. Basic search across all objects: { "searchTerm": "John", "objects": [ { "name": "Account", "fields": ["Name"], "limit": 10 }, { "name": "Contact", "fields": ["FirstName", "LastName", "Email"] } ] }
  2. Advanced search with filters: { "searchTerm": "Cloud*", "searchIn": "NAME FIELDS", "objects": [ { "name": "Account", "fields": ["Name", "Industry"], "orderBy": "Name DESC", "where": "Industry = 'Technology'" } ], "withClauses": [ { "type": "NETWORK", "value": "ALL NETWORKS" }, { "type": "SNIPPET", "fields": ["Description"] } ] }

Notes:

  • Use * and ? for wildcards in search terms
  • Each object can have its own WHERE, ORDER BY, and LIMIT clauses
  • Support for WITH clauses: DATA CATEGORY, DIVISION, METADATA, NETWORK, PRICEBOOKID, SNIPPET, SECURITY_ENFORCED
  • "updateable" and "viewable" options control record access filtering
Salesforce MCP Server_salesforce_upload_report_xml

Upload XML to generate or update reports in Salesforce.

Examples:

  1. Create a new report:
    • reportName: "Monthly Sales Summary"
    • folderId: "00l5e000000XXXXX" (optional - uploads to user's private reports by default)
    • xmlContent: "<Report xmlns=..."
    • isDeveloperName: false
  2. Update existing report:
    • reportId: "00O5e000000XXXXX"
    • xmlContent: "<Report xmlns=..."

Note: XML must follow Salesforce report metadata format. For custom report types, ensure the report type exists in your org before uploading.

FLUX Image Generator MCP Server_generateImage

Generate an image using Black Forest Lab's FLUX model based on a text prompt

FLUX Image Generator MCP Server_quickImage

Quickly generate an image based on a text prompt with default settings

FLUX Image Generator MCP Server_batchGenerateImages

Generate multiple images from a list of prompts

Deepseek-Thinking-Claude-3.5-Sonnet-CLINE-MCP_generate_response

Generate a response using DeepSeek's reasoning and Claude's response generation through OpenRouter.

Deepseek-Thinking-Claude-3.5-Sonnet-CLINE-MCP_check_response_status

Check the status of a response generation task

DroidMind_list_packages

List installed packages on the device.

Args: serial: Device serial number include_system_apps: Whether to include system apps in the list

Returns: Formatted list of installed packages

DroidMind_device_properties

Get detailed properties of a specific device.

Args: serial: Device serial number

Returns: Formatted device properties as text

DroidMind_install_app

Install an APK on the device.

Args: serial: Device serial number apk_path: Path to the APK file (local to the server) reinstall: Whether to reinstall if app exists grant_permissions: Whether to grant all requested permissions

Returns: Installation result message

DroidMind_uninstall_app

Uninstall an app from the device.

Args: serial: Device serial number package: Package name to uninstall keep_data: Whether to keep app data and cache directories

Returns: Uninstallation result message

DroidMind_start_app

Start an app on the device.

Args: serial: Device serial number package: Package name to start activity: Optional activity name to start (if empty, launches the default activity)

Returns: Result message

DroidMind_stop_app

Force stop an app on the device.

Args: serial: Device serial number package: Package name to stop

Returns: Result message

DroidMind_clear_app_data

Clear app data and cache for the specified package.

Args: serial: Device serial number package: Package name to clear data for

Returns: Result message

DroidMind_device_logcat

Get recent logcat output from a device.

Args: serial: Device serial number lines: Number of recent lines to fetch (default: 1000, max recommended: 20000) Higher values may impact performance and context window limits. filter_expr: Optional filter expression (e.g., "ActivityManager *") Use to focus on specific tags or priority levels max_size: Maximum output size in characters (default: 100000) Set to None for unlimited (not recommended)

Returns: Recent logcat entries

DroidMind_devicelist

List all connected Android devices.

Returns: A formatted list of connected devices with their basic information.

DroidMind_connect_device

Connect to an Android device over TCP/IP.

Args: ip_address: The IP address of the device to connect to port: The port to connect to (default: 5555)

Returns: A message indicating success or failure

DroidMind_disconnect_device

Disconnect from an Android device.

Args: serial: Device serial number

Returns: Disconnection result message

DroidMind_reboot_device

Reboot the device.

Args: serial: Device serial number mode: Reboot mode - "normal", "recovery", or "bootloader"

Returns: Reboot result message

DroidMind_capture_bugreport

Capture a bug report from a device.

Bug reports are comprehensive diagnostic information packages that include system logs, device state, running processes, and more.

Args: serial: Device serial number ctx: MCP context output_path: Where to save the bug report (leave empty to return as text) include_screenshots: Whether to include screenshots in the report timeout_seconds: Maximum time to wait for the bug report to complete (in seconds)

Returns: Path to the saved bug report or a summary of the report contents

DroidMind_dump_heap

Capture a heap dump from a running process on the device.

Heap dumps are useful for diagnosing memory issues, leaks, and understanding object relationships in running applications.

Args: serial: Device serial number ctx: MCP context package_or_pid: App package name or process ID to dump output_path: Where to save the heap dump (leave empty for default location) native: Whether to capture a native heap dump (vs Java heap) timeout_seconds: Maximum time to wait for the heap dump to complete (in seconds)

Returns: Path to the saved heap dump or an error message

DroidMind_list_directory

List contents of a directory on the device.

Args: serial: Device serial number path: Directory path to list

Returns: Directory listing

DroidMind_push_file

Upload a file to the device.

Args: serial: Device serial number local_path: Path to the local file device_path: Destination path on the device

Returns: Upload result message

DroidMind_pull_file

Download a file from the device to the local machine.

Args: serial: Device serial number device_path: Path to the file on the device local_path: Destination path on the local machine

Returns: Download result message

DroidMind_delete_file

Delete a file or directory from the device.

Args: serial: Device serial number path: Path to the file or directory to delete

Returns: Deletion result message

DroidMind_create_directory

Create a directory on the device.

Args: serial: Device serial number path: Path to the directory to create

Returns: Result message

DroidMind_file_exists

Check if a file exists on the device.

Args: serial: Device serial number path: Path to the file on the device

Returns: True if the file exists, False otherwise

DroidMind_read_file

Read the contents of a file on the device.

Args: serial: Device serial number device_path: Path to the file on device max_size: Maximum file size to read in bytes (default: 100KB) Files larger than this will return an error message instead

Returns: File contents as text or error message

DroidMind_write_file

Write text content to a file on the device.

Args: serial: Device serial number device_path: Path to the file on device content: Text content to write to the file

Returns: Writing result message

DroidMind_screenshot

Get a screenshot from a device.

Args: serial: Device serial number ctx: MCP context quality: JPEG quality (1-100, lower means smaller file size)

Returns: The device screenshot as an image

DroidMind_shell_command

Run a shell command on the device.

Args: serial: Device serial number command: Shell command to run max_lines: Maximum lines of output to return (default: 1000) Use positive numbers for first N lines, negative for last N lines Set to None for unlimited (not recommended for large outputs) max_size: Maximum output size in characters (default: 100000) Limits total response size regardless of line count

Returns: Command output

DroidMind_tap

Tap on the device screen at specific coordinates.

Args: serial: Device serial number x: X coordinate to tap y: Y coordinate to tap

Returns: The result of the tap operation

DroidMind_swipe

Perform a swipe gesture from one point to another on the device screen.

Args: serial: Device serial number start_x: Starting X coordinate start_y: Starting Y coordinate end_x: Ending X coordinate end_y: Ending Y coordinate ctx: Context duration_ms: Duration of the swipe in milliseconds (default: 300)

Returns: The result of the swipe operation

DroidMind_input_text

Input text on the device.

Args: serial: Device serial number text: Text to input (will be typed as if from keyboard)

Returns: The result of the text input operation

DroidMind_press_key

Press a key on the device.

Common keycodes:

  • 3: HOME
  • 4: BACK
  • 24: VOLUME UP
  • 25: VOLUME DOWN
  • 26: POWER
  • 82: MENU

Args: serial: Device serial number keycode: Android keycode to press

Returns: The result of the key press operation

DroidMind_start_intent

Start an app activity using an intent.

Args: serial: Device serial number package: Package name (e.g., "com.android.settings") activity: Activity name (e.g., ".Settings") ctx: Context extras: Optional intent extras as key-value pairs

Returns: The result of the intent operation

Twosplit MCP Server_twosplit

Get multiple AI perspectives and combine them into the best response

MCP Server for continue.dev_web_search-
MCP Server for continue.dev_perplexity_summary_search-
SimpleLocalize MCP Server_create_translation_keys

Create translation keys in bulk for a project.

This endpoint allows you to create multiple translation keys at once. You can create up to 100 translation keys in a single request. Each key must have a 'key' field, and optionally can include 'namespace' and 'description' fields.

Args: keys: List of dictionaries containing key information with fields: - key (required): Translation key (max 500 chars) - namespace (optional): Namespace for the key (max 64 chars) - description (optional): Description for translators (max 500 chars)

SimpleLocalize MCP Server_update_translations

Update translations in bulk with a single request.

This endpoint allows you to update multiple translations at once. You can update up to 100 translations in a single request. Each translation must specify the key, language, and text. Namespace is optional.

Args: translations: List of dictionaries containing translation information with fields: - key (required): Translation key - language (required): Language code - text (required): Translation text (max 65535 chars) - namespace (optional): Namespace for the key

Office Word MCP Server_create_document

Create a new Word document with optional metadata.

Args: filename: Name of the document to create (with or without .docx extension) title: Optional title for the document metadata author: Optional author for the document metadata
Office Word MCP Server_add_heading

Add a heading to a Word document.

Args: filename: Path to the Word document text: Heading text level: Heading level (1-9, where 1 is the highest level)
Office Word MCP Server_add_paragraph

Add a paragraph to a Word document.

Args: filename: Path to the Word document text: Paragraph text style: Optional paragraph style name
Office Word MCP Server_add_table

Add a table to a Word document.

Args: filename: Path to the Word document rows: Number of rows in the table cols: Number of columns in the table data: Optional 2D array of data to fill the table
Office Word MCP Server_add_picture

Add an image to a Word document.

Args: filename: Path to the Word document image_path: Path to the image file width: Optional width in inches (proportional scaling)
Office Word MCP Server_get_document_info

Get information about a Word document.

Args: filename: Path to the Word document
Office Word MCP Server_get_document_text

Extract all text from a Word document.

Args: filename: Path to the Word document
Office Word MCP Server_get_document_outline

Get the structure of a Word document.

Args: filename: Path to the Word document
Office Word MCP Server_list_available_documents

List all .docx files in the specified directory.

Args: directory: Directory to search for Word documents
Office Word MCP Server_copy_document

Create a copy of a Word document.

Args: source_filename: Path to the source document destination_filename: Optional path for the copy. If not provided, a default name will be generated.
Office Word MCP Server_format_text

Format a specific range of text within a paragraph.

Args: filename: Path to the Word document paragraph_index: Index of the paragraph (0-based) start_pos: Start position within the paragraph text end_pos: End position within the paragraph text bold: Set text bold (True/False) italic: Set text italic (True/False) underline: Set text underlined (True/False) color: Text color (e.g., 'red', 'blue', etc.) font_size: Font size in points font_name: Font name/family
Office Word MCP Server_search_and_replace

Search for text and replace all occurrences.

Args: filename: Path to the Word document find_text: Text to search for replace_text: Text to replace with
Office Word MCP Server_delete_paragraph

Delete a paragraph from a document.

Args: filename: Path to the Word document paragraph_index: Index of the paragraph to delete (0-based)
Office Word MCP Server_create_custom_style

Create a custom style in the document.

Args: filename: Path to the Word document style_name: Name for the new style bold: Set text bold (True/False) italic: Set text italic (True/False) font_size: Font size in points font_name: Font name/family color: Text color (e.g., 'red', 'blue') base_style: Optional existing style to base this on
Office Word MCP Server_format_table

Format a table with borders, shading, and structure.

Args: filename: Path to the Word document table_index: Index of the table (0-based) has_header_row: If True, formats the first row as a header border_style: Style for borders ('none', 'single', 'double', 'thick') shading: 2D list of cell background colors (by row and column)
Office Word MCP Server_add_page_break

Add a page break to the document.

Args: filename: Path to the Word document
TeamRetro MCP Server_list_teams

List teams from TeamRetro with filtering and pagination

TeamRetro MCP Server_detail_team

Get a single team by ID

TeamRetro MCP Server_update_team

Update an existing team

TeamRetro MCP Server_create_team

Create a new team with optional members and tags

TeamRetro MCP Server_delete_team

Delete an existing team

TeamRetro MCP Server_list_users

List users with pagination

TeamRetro MCP Server_add_user

Add or update a user by email

TeamRetro MCP Server_update_user

Update an existing user's information

TeamRetro MCP Server_delete_user

Delete a user by email

TeamRetro MCP Server_get_user

Get a single user by email

TeamRetro MCP Server_list_team_members

List team members with pagination

Airbnb MCP Server_airbnb_search

Search for Airbnb listings with various filters and pagination. Provide direct links to the user

Airbnb MCP Server_airbnb_listing_details

Get detailed information about a specific Airbnb listing. Provide direct links to the user

MCP Sui Tools_faucet

Get faucet from sui networks

MCP Sui Tools_balance

Get balance of an address from sui networks

MCP Sui Tools_sui-transfer

transfer SUI(in mist) to single or multiple addresses

IDA Pro MCP Server_run_ida_command

Execute an IDA Pro Script (IdaPython, Version IDA 8.3)

IDA Pro MCP Server_search_immediate_value

Search for immediate values in the binary

IDA Pro MCP Server_search_text

Search for text in the binary

IDA Pro MCP Server_search_byte_sequence

Search for a byte sequence in the binary

IDA Pro MCP Server_get_disassembly

Get disassembly for an address range

IDA Pro MCP Server_get_functions

Get list of functions from the binary

IDA Pro MCP Server_get_exports

Get list of exports from the binary

IDA Pro MCP Server_get_strings

Get list of strings from the binary

eClass MCP Server_login

Log in to eClass using username/password from your .env file through UoA's SSO. Configure ECLASS_USERNAME and ECLASS_PASSWORD in your .env file.

eClass MCP Server_get_courses

Get list of enrolled courses from eClass

eClass MCP Server_logout

Log out from eClass

eClass MCP Server_authstatus

Check authentication status with eClass

Image Generation MCP Server_generate_image

Generate an image using Stable Diffusion

Image Generation MCP Server_get_sd_models

Get list of available Stable Diffusion models

Image Generation MCP Server_set_sd_model

Set the active Stable Diffusion model

Image Generation MCP Server_get_sd_upscalers

Get list of available upscaler models

Image Generation MCP Server_upscale_images

Upscale one or more images using Stable Diffusion

Audio Transcriber MCP Server_transcribe_audio

Transcribe an audio file using OpenAI Whisper API

MCP Crypto Wallet EVM_provider_lookup_address

Lookup the ENS name for an address

MCP Crypto Wallet EVM_provider_resolve_name

Resolve an ENS name to an address

MCP Crypto Wallet EVM_network_get_network

Get the current network information

MCP Crypto Wallet EVM_network_get_block_number

Get the current block number

MCP Crypto Wallet EVM_network_get_fee_data

Get the current fee data (base fee, max priority fee, etc.)

MCP Crypto Wallet EVM_wallet_get_balance

Get the balance of the wallet

MCP Crypto Wallet EVM_wallet_get_chain_id

Get the chain ID the wallet is connected to

MCP Crypto Wallet EVM_wallet_get_gas_price

Get the current gas price

MCP Crypto Wallet EVM_wallet_provider_set

Set the provider URL. By default, the provider URL is set to the ETH mainnet or the URL set in the PROVIDER_URL environment variable.

MCP Crypto Wallet EVM_wallet_create_random

Create a new wallet with a random private key

MCP Crypto Wallet EVM_wallet_from_private_key

Create a wallet from a private key

MCP Crypto Wallet EVM_wallet_create_mnemonic_phrase

Create a mnemonic phrase

MCP Crypto Wallet EVM_wallet_from_mnemonic

Create a wallet from a mnemonic phrase

MCP Crypto Wallet EVM_wallet_from_encrypted_json

Create a wallet by decrypting an encrypted JSON wallet

MCP Crypto Wallet EVM_wallet_encrypt

Encrypt a wallet with a password

MCP Crypto Wallet EVM_wallet_get_address

Get the wallet address

MCP Crypto Wallet EVM_wallet_get_public_key

Get the wallet public key

MCP Crypto Wallet EVM_wallet_get_private_key

Get the wallet private key (with appropriate security warnings)

MCP Crypto Wallet EVM_wallet_get_transaction_count

Get the number of transactions sent from this account (nonce)

MCP Crypto Wallet EVM_wallet_call

Call a contract method without sending a transaction

MCP Crypto Wallet EVM_wallet_send_transaction

Send a transaction

MCP Crypto Wallet EVM_wallet_sign_transaction

Sign a transaction without sending it

MCP Crypto Wallet EVM_wallet_populate_transaction

Populate a transaction with missing fields

MCP Crypto Wallet EVM_wallet_sign_message

Sign a message

MCP Crypto Wallet EVM_wallet_sign_typed_data

Sign typed data (EIP-712)

MCP Crypto Wallet EVM_wallet_verify_message

Verify a signed message

MCP Crypto Wallet EVM_wallet_verify_typed_data

Verify signed typed data

MCP Crypto Wallet EVM_provider_get_block

Get a block by number or hash

MCP Crypto Wallet EVM_provider_get_transaction

Get a transaction by hash

MCP Crypto Wallet EVM_provider_get_transaction_receipt

Get a transaction receipt

MCP Crypto Wallet EVM_provider_get_code

Get the code at an address

MCP Crypto Wallet EVM_provider_get_storage_at

Get the storage at a position for an address

MCP Crypto Wallet EVM_provider_estimate_gas

Estimate the gas required for a transaction

MCP Crypto Wallet EVM_provider_get_logs

Get logs that match a filter

MCP Crypto Wallet EVM_provider_get_ens_resolver

Get the ENS resolver for a name

honeycomb-mcp-server_honeycomb_slos_list

List all SLOs for a dataset

honeycomb-mcp-server_honeycomb_auth

Get authentication information and validate API key

honeycomb-mcp-server_honeycomb_datasets_list

List all datasets in the environment

honeycomb-mcp-server_honeycomb_board_update

Update an existing board

honeycomb-mcp-server_honeycomb_board_delete

Delete a board

honeycomb-mcp-server_honeycomb_markers_list

List all markers for a dataset

honeycomb-mcp-server_honeycomb_dataset_get

Get information about a specific dataset

honeycomb-mcp-server_honeycomb_datasets_create

Create a new dataset

honeycomb-mcp-server_honeycomb_marker_create

Create a new marker for a dataset

honeycomb-mcp-server_honeycomb_datasets_update

Update an existing dataset

honeycomb-mcp-server_honeycomb_marker_get

Get information about a specific marker

honeycomb-mcp-server_honeycomb_marker_update

Update an existing marker

honeycomb-mcp-server_honeycomb_columns_list

List all columns in a dataset

honeycomb-mcp-server_honeycomb_query_create

Create a new query for a dataset

honeycomb-mcp-server_honeycomb_query_get

Get information about a specific query

honeycomb-mcp-server_honeycomb_query_result_create

Create a new query result (run a query)

honeycomb-mcp-server_honeycomb_query_result_get

Get results of a specific query execution

honeycomb-mcp-server_honeycomb_event_create

Create a new event in a dataset

honeycomb-mcp-server_honeycomb_batch_event_create

Create multiple events in a dataset in a single batch

honeycomb-mcp-server_honeycomb_boards_list

List all boards

honeycomb-mcp-server_honeycomb_board_get

Get information about a specific board

honeycomb-mcp-server_honeycomb_board_create

Create a new board

honeycomb-mcp-server_honeycomb_marker_delete

Delete a marker

honeycomb-mcp-server_honeycomb_slo_get

Get information about a specific SLO

honeycomb-mcp-server_honeycomb_slo_create

Create a new SLO for a dataset

honeycomb-mcp-server_honeycomb_slo_update

Update an existing SLO

honeycomb-mcp-server_honeycomb_triggers_list

List all triggers for a dataset

honeycomb-mcp-server_honeycomb_trigger_get

Get information about a specific trigger

honeycomb-mcp-server_honeycomb_trigger_create

Create a new trigger for a dataset

honeycomb-mcp-server_honeycomb_trigger_update

Update an existing trigger

honeycomb-mcp-server_honeycomb_trigger_delete

Delete a trigger

esa MCP Server_esa_list_posts

Get a list of posts in the team (with pagination support)

esa MCP Server_esa_get_post

Get detailed information about a specific post

esa MCP Server_esa_create_post

Create a new post

esa MCP Server_esa_update_post

Update an existing post

esa MCP Server_esa_delete_post

Delete a post

esa MCP Server_esa_list_comments

Get a list of comments for a post

esa MCP Server_esa_get_comment

Get a specific comment

esa MCP Server_esa_create_comment

Post a comment to an article

esa MCP Server_esa_get_members

Get a list of team members

esa MCP Server_esa_get_member

Get information about a specific team member

MCP _get_merit_list
MCP _get_public_report
MCP _get_hunkuk_codes
MCP _get_workout_affil_codes
MCP _clear_cache
mcp-with-ssh_process_umb_command

Processes the Update Memory Bank (UMB) command

mcp-with-ssh_complete_umb

Completes the Update Memory Bank (UMB) process

mcp-with-ssh_switch_mode

Switches to a specific mode

mcp-with-ssh_initialize_memory_bank

Initialize a Memory Bank in the specified directory

mcp-with-ssh_set_memory_bank_path

Set a custom path for the Memory Bank

mcp-with-ssh_debug_mcp_config

Debug the current MCP configuration

mcp-with-ssh_read_memory_bank_file

Read a file from the Memory Bank

mcp-with-ssh_write_memory_bank_file

Write to a Memory Bank file

mcp-with-ssh_list_memory_bank_files

List Memory Bank files

mcp-with-ssh_get_memory_bank_status

Check Memory Bank status

mcp-with-ssh_migrate_file_naming

Migrate Memory Bank files from camelCase to kebab-case naming convention

mcp-with-ssh_track_progress

Track progress and update Memory Bank files

mcp-with-ssh_update_active_context

Update the active context file

mcp-with-ssh_log_decision

Log a decision in the decision log

mcp-with-ssh_get_current_mode

Gets information about the current mode

BICScan MCP Server_get_risk_score

Get Risk Score for Crypto, Domain Name, ENS, CNS, KNS or even Hostname Address

Args: address: EOA, CA, ENS, CNS, KNS or even HostName Returns: Dict: where summary.bicscan_score is from 0 to 100. 100 is high risk.
BICScan MCP Server_get_assets

Get Assets holdings by CryptoAddress

Args: address: EOA, CA, ENS, CNS, KNS. Returns: Dict: where assets is a list of assets
SouthAsia MCP Tool_hello_world

A simple demonstration tool that returns a greeting message

SouthAsia MCP Tool_hello_name

A demonstration tool that greets you by name

Internetsearch-mcp-server_InternetSearch

Args: query:

@chargebee/mcp_chargebee_documentation_search

Do not use this tool for code generation. For code generation use "chargebee_code_planner" tool. This tool will take in parameters about integrating with Chargebee in their application, then search and retrieve relevant Chargebee documentation content.

It takes the following arguments:

  • query (string): The user query to search an answer for in the Chargebee documentation.
  • language (enum): The programming language for the documentation. Check the user's application language.
  • userRequest (string): User's original request to you.
@chargebee/mcp_chargebee_code_planner

Always use this tool to get the accurate integeration code guide for Chargebee. This tool will take in parameters about integrating with Chargebee in their application and generates a integration workflow along with the code snippets.

It takes the following arguments:

  • goal (string): What is the user's goal?
  • language (enum): Programming language the code to be generated in. Check the user's application language.
OSSInsight MCP Server_get_repo_analysis

Get detailed analysis of a GitHub repository, including activity, stars, issues, and other metrics.

OSSInsight MCP Server_get_developer_analysis

Get detailed analysis of a GitHub developer, including their activity and contributions.

OSSInsight MCP Server_get_collection

Get information about a specific collection of repositories

OSSInsight MCP Server_list_collections

List all available repository collections

OSSInsight MCP Server_natural_language_query

Query GitHub data using natural language through the OSSInsight chat interface

YNAB MCP Server_ynab_list_budgets

Lists all available budgets from YNAB API

Image Analysis MCP Server_analyze_image

URLGPT-4-turbo

Atom-of-thoughts_AoT

Atom of Thoughts (AoT) is a tool for solving complex problems by decomposing them into independent, reusable atomic units of thought. Unlike traditional sequential thinking, this tool enables more powerful problem solving by allowing atomic units of thought to form dependencies with each other.

When to use:

  • Solving problems requiring complex reasoning
  • Generating hypotheses that need verification from multiple perspectives
  • Deriving high-confidence conclusions in scenarios where accuracy is crucial
  • Minimizing logical errors in critical tasks
  • Decision-making requiring multiple verification steps

Atom types:

  • premise: Basic assumptions or given information for problem solving
  • reasoning: Logical reasoning process based on other atoms
  • hypothesis: Proposed solutions or intermediate conclusions
  • verification: Process to evaluate the validity of other atoms (especially hypotheses)
  • conclusion: Verified hypotheses or final problem solutions

Parameter descriptions:

  • atomId: Unique identifier for the atom (e.g., 'A1', 'H2')
  • content: Actual content of the atom
  • atomType: Type of atom (one of: premise, reasoning, hypothesis, verification, conclusion)
  • dependencies: List of IDs of other atoms this atom depends on
  • confidence: Confidence level of this atom (value between 0-1)
  • isVerified: Whether this atom has been verified
  • depth: Depth level of this atom (in the decomposition-contraction process)

Additional features:

  1. Decomposition-Contraction mechanism:
    • Decompose atoms into smaller sub-atoms and contract back after verification
    • startDecomposition(atomId): Start atom decomposition
    • addToDecomposition(decompositionId, atomId): Add sub-atom to decomposition
    • completeDecomposition(decompositionId): Complete decomposition process
  2. Automatic termination mechanism:
    • Automatically terminate when reaching maximum depth or finding high-confidence conclusion
    • getTerminationStatus(): Return termination status and reason
    • getBestConclusion(): Return highest confidence conclusion

Usage method:

  1. Understand the problem and define necessary premise atoms
  2. Create reasoning atoms based on premises
  3. Create hypothesis atoms based on reasoning
  4. Create verification atoms to verify hypotheses
  5. Derive conclusion atoms based on verified hypotheses
  6. Use atom decomposition to explore deeper when necessary
  7. Present the high-confidence conclusion atom as the final answer
Atom-of-thoughts_AoT-light

A lightweight version of Atom of Thoughts (AoT) designed for faster processing and quicker results. This streamlined version sacrifices some depth of analysis for speed, making it ideal for time-sensitive reasoning tasks.

When to use:

  • Quick brainstorming sessions requiring atomic thought organization
  • Time-sensitive problem solving where speed is prioritized over exhaustive analysis
  • Simpler reasoning tasks that don't require deep decomposition
  • Initial exploration before using the full AoT for deeper analysis
  • Learning or demonstration purposes where response time is important

Key differences from full AoT:

  • Lower maximum depth (3 instead of 5) for faster processing
  • Simplified verification process
  • Immediate conclusion suggestion for high-confidence hypotheses
  • Reduced computational overhead and response payload
  • Optimized for speed rather than exhaustive analysis

Atom types and parameters are the same as the full AoT tool.

Atom-of-thoughts_atomcommands

A command tool to control the decomposition-contraction mechanism and automatic termination of Atom of Thoughts.

Use this tool to access advanced features of AoT:

  1. Decomposition (decompose): Decompose a specified atom into smaller sub-atoms
  2. Complete decomposition (complete_decomposition): Complete an ongoing decomposition process
  3. Check termination status (termination_status): Check the termination status of the current AoT process
  4. Get best conclusion (best_conclusion): Get the verified conclusion with the highest confidence
  5. Change settings (set_max_depth): Change the maximum depth limit

Command descriptions:

  • command: Command to execute (decompose, complete_decomposition, termination_status, best_conclusion, set_max_depth)
  • atomId: Atom ID to use with the command (only required for decompose command)
  • decompositionId: ID of the decomposition process (only required for complete_decomposition command)
  • maxDepth: Maximum depth value to set (only required for set_max_depth command)
open-docs-mcp_search_docs

Search documentation

open-docs-mcp_enable_doc

Enable crawling for a specific doc

open-docs-mcp_disable_doc

Disable crawling for a specific doc

open-docs-mcp_crawl_docs

Start crawling enabled docs

open-docs-mcp_build_index

Build search index for docs

Hanzo MCP_list_external_servers

List available external MCP servers.

Returns: A list of available external MCP servers

Hanzo MCP_enable_external_server

Enable an external MCP server.

Args: name: The name of the server to enable

Returns: The result of the operation

Hanzo MCP_disable_external_server

Disable an external MCP server.

Args: name: The name of the server to disable

Returns: The result of the operation

Hanzo MCP_set_auto_detect

Set whether to auto-detect external MCP servers.

Args: enabled: Whether to enable auto-detection

Returns: The result of the operation

Hanzo MCP_dev

Universal development tool for all project operations.

This tool provides a unified interface for all development operations, including file operations, command execution, project analysis, notebook operations, and vector store operations.

Args: operation: The operation to perform **kwargs: Additional arguments specific to the operation

Returns: Operation result as JSON or text

Hanzo MCP_think

Use the tool to think about something.

It will not obtain new information or make any changes to the repository, but just log the thought. Use it when complex reasoning or brainstorming is needed. For example, if you explore the repo and discover the source of a bug, call this tool to brainstorm several unique ways of fixing the bug, and assess which change(s) are likely to be simplest and most effective. Alternatively, if you receive some test results, call this tool to brainstorm ways to fix the failing tests.

Args: thought: Your thoughts or analysis

Returns: Confirmation that the thinking process has been recorded, possibly with enhanced analysis

Hanzo MCP_run_mcp

Run operations on MCP servers.

Args: operation: The operation to perform (list, start, stop, info, restart) server: The server to operate on (optional, for specific server operations) **kwargs: Additional arguments for the operation

Returns: Operation result

mcp-painter_drawing_getCanvasData

Get the current pixel data of the drawing canvas as JSON.

mcp-painter_drawing_generateCanvas

Generate a new drawing canvas with specified width and height.

mcp-painter_drawing_fillRectangle

Fill a rectangle on the drawing canvas with a specified color and coordinates.

mcp-painter_drawing_getCanvasPng

Get the current drawing canvas as a PNG image (base64 encoded).

Multi-Model Advisor_list-available-models

List all available models in Ollama that can be used with query-models

Multi-Model Advisor_query-models

Query multiple AI models via Ollama and get their responses to compare perspectives

Fetcher MCP_fetch_url

Retrieve web page content from a specified URL

Fetcher MCP_fetch_urls

Retrieve web page content from multiple specified URLs

MCP QQ Music Test Server_search_music

Search for music tracks

Args: keyword: Search keyword or phrase page: Page number for pagination (default: 1) num: Maximum number of results to return (default: 20)

Returns: List of music tracks matching the search criteria

Sonos MCP Server_partymode

Enable party mode on the current Sonos device.

Returns: Dict[str, Any]: The device's state after enabling party mode, including name, volume, state, and track info.

Sonos MCP Server_get_all_device_states

Retrieve the state information for all discovered Sonos devices.

Returns: List[Dict[str, Any]]: A list of dictionaries containing state information for each device.

Sonos MCP Server_now_playing

Retrieve information about currently playing tracks on all Sonos devices.

Returns: List[Dict[str, str]]: A list of dictionaries containing the name, title, artist, and album of currently playing tracks.

Sonos MCP Server_get_device_state

Retrieve the state information for a specific Sonos device.

Args: name: The name of the device to retrieve state information for. If None, uses the current device.

Returns: Dict[str, Any]: A dictionary containing the device's name, volume, state, and current track information.

Sonos MCP Server_pause

Pause playback on a Sonos device.

Args: name: The name of the device to pause. If None, uses the current device.

Returns: Dict[str, Any]: The device's state after pausing, including name, volume, state, and track info.

Sonos MCP Server_stop

Stop playback on a Sonos device.

Args: name: The name of the device to stop. If None, uses the current device.

Returns: Dict[str, Any]: The device's state after stopping, including name, volume, state, and track info.

Sonos MCP Server_play

Start playback on a Sonos device.

Args: name: The name of the device to start playback on. If None, uses the current device.

Returns: Dict[str, Any]: The device's state after starting playback, including name, volume, state, and track info.

Sonos MCP Server_next

Skip to the next track on a Sonos device.

Args: name: The name of the device to skip the track on. If None, uses the current device.

Returns: Dict[str, Any]: The device's state after skipping to the next track, including name, volume, state, and track info.

Sonos MCP Server_previous

Skip to the previous track on a Sonos device.

Args: name: The name of the device to skip the track on. If None, uses the current device.

Returns: Dict[str, Any]: The device's state after skipping to the previous track, including name, volume, state, and track info.

Sonos MCP Server_get_queue

Retrieve the queue of tracks for a Sonos device.

Args: name: The name of the device to retrieve the queue from. If None, uses the current device.

Returns: List[Dict[str, Any]]: A list of dictionaries containing track information in the queue.

Sonos MCP Server_mode

Get or set the play mode of a Sonos device.

Args: mode: The play mode to set (e.g., "NORMAL", "SHUFFLE_NOREPEAT", "SHUFFLE", "REPEAT_ALL"). If None, returns the current mode. name: The name of the device to set the mode for. If None, uses the current device.

Returns: str: The current play mode after the operation.

Sonos MCP Server_speaker_info

Retrieve speaker information for a Sonos device.

Args: name: The name of the device to retrieve speaker information from. If None, uses the current device.

Returns: Dict[str, str]: A dictionary containing speaker information.

Sonos MCP Server_get_current_track_info

Retrieve current track information for a Sonos device.

Args: name: The name of the device to retrieve track information from. If None, uses the current device.

Returns: Dict[str, str]: A dictionary containing the current track's artist, title, album, playlist position, and duration.

Sonos MCP Server_volume

Get or set the volume of a Sonos device.

Args: volume: The volume level to set (0-99). If None, returns current volume. name: The name of the device to control. If None, uses the current device.

Returns: int: The current volume level after the operation.

Raises: ValueError: If volume is not between 0 and 99. ValueError: If the specified device is not found.

Sonos MCP Server_skip

Skip tracks in the queue for a Sonos device.

Args: increment: The number of tracks to skip forward. Defaults to 1. name: The name of the device to skip tracks on. If None, uses the current device.

Returns: Dict[str, Any]: The device's state after skipping tracks, including name, volume, state, and track info.

Raises: ValueError: If the new track position is out of the queue's range.

Sonos MCP Server_play_index

Play a specific track from the queue on a Sonos device.

Args: index: The index of the track to play. name: The name of the device to play the track on. If None, uses the current device.

Returns: Dict[str, Any]: The device's state after playing the specified track, including name, volume, state, and track info.

Raises: ValueError: If the index is out of the queue's range.

Sonos MCP Server_remove_index_from_queue

Remove a specific track from the queue on a Sonos device.

Args: index: The index of the track to remove. name: The name of the device to remove the track from. If None, uses the current device.

Returns: List[Dict[str, Any]]: The updated queue after removing the track.

Raises: ValueError: If the index is out of the queue's range.

Sonos MCP Server_get_queue_length

Retrieve the queue length for a Sonos device.

Args: name: The name of the device to retrieve the queue length from. If None, uses the current device.

Returns: int: The length of the queue.

Cortellis MCP Server_get_drug_swot

Return SWOT analysis complementing chosen drug record for a submitted drug identifier from Cortellis API

Cortellis MCP Server_get_drug_financial

Return financial commentary and data (actual sales and consensus forecast) for a submitted drug identifier from Cortellis API

Cortellis MCP Server_get_company

Return the entire company record with all available fields for a given identifier from Cortellis API

Cortellis MCP Server_search_drugs

Search for drugs in the Cortellis database. If the amount of drugs returned do not match with the totalResults, ALWAYS use the offset parameter to get the next page(s) of results.

Cortellis MCP Server_explore_ontology

Explore the ontology or taxonomy terms in the Cortellis database

Cortellis MCP Server_get_drug

Return the entire drug record with all available fields for a given identifier from Cortellis API

Cortellis MCP Server_search_companies

Search for companies in the Cortellis database. If the amount of companies returned do not match with the totalResults, ALWAYS use the offset parameter to get the next page(s) of results.

MCP Think Tool Server_think

Use this tool to think about something. It will not obtain new information or change anything, but just append the thought to the log. Use it when complex reasoning or cache memory is needed, especially during long chains of tool calls, policy adherence scenarios, or sequential decision making.

MCP Think Tool Server_get_thoughts

Retrieve all thoughts recorded in the current session to review your reasoning process.

MCP Think Tool Server_clear_thoughts

Clear all thoughts recorded in the current session. Use this to start fresh if the thinking process needs to be reset.

MCP Think Tool Server_get_thought_stats

Get statistics about the thoughts recorded in the current session to analyze your thinking process.

Superset MCP Server_query-superset

Superset

Superset MCP Server_list-databases-
Superset MCP Server_list-tables-
Superset MCP Server_list-fields-
MCP Iceberg Catalog_execute_query

Execute a query on Iceberg tables

MCP PostgreSQL Server_describe_table

Get table structure

MCP PostgreSQL Server_list_tables

List all tables in the database

MCP PostgreSQL Server_connect_db

Connect to PostgreSQL database. NOTE: Default connection exists - only use when requested or if other commands fail

MCP PostgreSQL Server_query

Execute a SELECT query

MCP PostgreSQL Server_execute

Execute an INSERT, UPDATE, or DELETE query

mcp-youtube-transcript_get_transcripts

Extract and process transcripts from a YouTube video

MCP Server Example_get-alerts

Get weather alerts for a state

MCP Server Example_get-forecast

Get weather forecast for a location

aptos-mcp_create_aptos_project
Create a new Aptos project using the Aptos CLI. Args: project_name: Name of the project project_type: Type of project (fullstack, contract, client)
aptos-mcp_generate_aptos_component
Generate a new component for an Aptos project. Args: component_type: Type of component (table, module, etc.) component_name: Name of the component project_dir: Project directory path options: Additional options as a string
aptos-mcp_test_aptos_contract
Test an Aptos Move contract using the Aptos CLI. Args: contract_path: Path to the contract directory or file function_name: Optional function to test specifically args: Optional list of arguments for the function
aptos-mcp_create_aptos_indexer
Creates a new Aptos indexer project based on the example processor. Args: project_name: Name of the indexer project processor_type: Type of processor (transaction, event)
aptos-mcp_create_gas_station
Creates a new Aptos gas station (fee sponsorship) project. Args: project_name: Name of the gas station project
aptos-mcp_aptos_abi_generate
Generate ABI for an Aptos contract. Args: contract_path: Path to the contract directory output_format: Format of the output (ts, json)
MCP Server Pentest_browser_navigate

Navigate to a URL

MCP Server Pentest_browser_screenshot

Take a screenshot of the current page or a specific element

MCP Server Pentest_browser_click

Click an element on the page using CSS selector

MCP Server Pentest_broser_url_reflected_xss

Test whether the URL has an XSS vulnerability

MCP Server Pentest_browser_click_text

Click an element on the page by its text content

MCP Server Pentest_browser_fill

Fill out an input field

MCP Server Pentest_browser_select

Select an element on the page with Select tag using CSS selector

MCP Server Pentest_browser_select_text

Select an element on the page with Select tag by its text content

MCP Server Pentest_browser_hover

Hover an element on the page using CSS selector

MCP Server Pentest_browser_hover_text

Hover an element on the page by its text content

MCP Server Pentest_browser_evaluate

Execute JavaScript in the browser console

MCP Server Pentest_browser_url_sql_injection

Test whether the URL has SQL injection vulnerabilities

HubSpot MCP_crm_create_company

Create a new company with validated properties

HubSpot MCP_crm_update_company

Update an existing company with validated properties

HubSpot MCP_crm_get_company

Get a single company by ID with specific properties and associations

HubSpot MCP_crm_search_companies

Search companies with company-specific filters

HubSpot MCP_crm_batch_create_companies

Create multiple companies in a single request

HubSpot MCP_crm_batch_update_companies

Update multiple companies in a single request

HubSpot MCP_crm_get_company_properties

Get all properties for companies

HubSpot MCP_crm_create_company_property

Create a new company property

HubSpot MCP_crm_list_objects

List CRM objects of a specific type with optional filtering and pagination

HubSpot MCP_crm_get_object

Get a single CRM object by ID

HubSpot MCP_crm_create_object

Create a new CRM object

HubSpot MCP_crm_update_object

Update an existing CRM object

HubSpot MCP_crm_delete_object

Delete a CRM object

HubSpot MCP_crm_create_contact_property

Create a new contact property

HubSpot MCP_crm_search_objects

Search CRM objects using filters

HubSpot MCP_crm_batch_create_objects

Create multiple CRM objects in a single request

HubSpot MCP_crm_batch_update_objects

Update multiple CRM objects in a single request

HubSpot MCP_crm_batch_delete_objects

Delete multiple CRM objects in a single request

HubSpot MCP_crm_list_association_types

List all available association types for a given object type pair

HubSpot MCP_crm_get_associations

Get all associations of a specific type between objects

HubSpot MCP_crm_create_association

Create an association between two objects

HubSpot MCP_crm_delete_association

Delete an association between two objects

HubSpot MCP_crm_batch_create_associations

Create multiple associations in a single request

HubSpot MCP_crm_batch_delete_associations

Delete multiple associations in a single request

HubSpot MCP_crm_create_contact

Create a new contact with validated properties

HubSpot MCP_crm_update_contact

Update an existing contact with validated properties

HubSpot MCP_crm_get_contact

Get a single contact by ID with specific properties and associations

HubSpot MCP_crm_search_contacts

Search contacts with contact-specific filters

HubSpot MCP_crm_batch_create_contacts

Create multiple contacts in a single request

HubSpot MCP_crm_batch_update_contacts

Update multiple contacts in a single request

HubSpot MCP_crm_get_contact_properties

Get all properties for contacts

HubSpot MCP_crm_create_lead

Create a new lead with validated properties

HubSpot MCP_notes_list

List all notes with optional filtering

HubSpot MCP_crm_update_lead

Update an existing lead with validated properties

HubSpot MCP_crm_get_lead

Get a single lead by ID with specific properties and associations

HubSpot MCP_crm_search_leads

Search leads with lead-specific filters

HubSpot MCP_crm_batch_create_leads

Create multiple leads in a single request

HubSpot MCP_crm_batch_update_leads

Update multiple leads in a single request

HubSpot MCP_crm_get_lead_properties

Get all properties for leads

HubSpot MCP_crm_create_lead_property

Create a new lead property

HubSpot MCP_meetings_list

List all meetings with optional filtering

HubSpot MCP_meetings_get

Get details of a specific meeting

HubSpot MCP_calls_get

Get details of a specific call

HubSpot MCP_meetings_create

Create a new meeting

HubSpot MCP_meetings_update

Update an existing meeting

HubSpot MCP_meetings_delete

Delete a meeting

HubSpot MCP_meetings_search

Search meetings with specific filters

HubSpot MCP_meetings_batch_create

Create multiple meetings in a single request

HubSpot MCP_meetings_batch_update

Update multiple meetings in a single request

HubSpot MCP_meetings_batch_archive

Archive (delete) multiple meetings in a single request

HubSpot MCP_notes_create

Create a new note

HubSpot MCP_notes_get

Get details of a specific note

HubSpot MCP_notes_update

Update an existing note

HubSpot MCP_notes_archive

Archive (delete) a note

HubSpot MCP_notes_search

Search notes with specific filters

HubSpot MCP_notes_batch_create

Create multiple notes in a single request

HubSpot MCP_notes_batch_read

Read multiple notes in a single request

HubSpot MCP_notes_batch_update

Update multiple notes in a single request

HubSpot MCP_notes_batch_archive

Archive (delete) multiple notes in a single request

HubSpot MCP_tasks_create

Create a new task

HubSpot MCP_tasks_get

Get details of a specific task

HubSpot MCP_tasks_update

Update an existing task

HubSpot MCP_tasks_archive

Archive (delete) a task

HubSpot MCP_tasks_list

List all tasks with optional filtering

HubSpot MCP_tasks_search

Search tasks with specific filters

HubSpot MCP_tasks_batch_create

Create multiple tasks in a single request

HubSpot MCP_tasks_batch_read

Read multiple tasks in a single request

HubSpot MCP_tasks_batch_update

Update multiple tasks in a single request

HubSpot MCP_tasks_batch_archive

Archive (delete) multiple tasks in a single request

HubSpot MCP_engagement_details_get

Get details of a specific engagement

HubSpot MCP_engagement_details_create

Create a new engagement with details

HubSpot MCP_engagement_details_update

Update an existing engagement's details

HubSpot MCP_engagement_details_list

List all engagements with optional filtering

HubSpot MCP_engagement_details_delete

Delete an engagement

HubSpot MCP_engagement_details_get_associated

Get all engagements associated with an object

HubSpot MCP_calls_create

Create a new call record

HubSpot MCP_calls_update

Update an existing call record

HubSpot MCP_calls_archive

Archive (delete) a call record

HubSpot MCP_calls_list

List all calls with optional filtering

HubSpot MCP_calls_search

Search calls with specific filters

HubSpot MCP_calls_batch_create

Create multiple call records in a single request

HubSpot MCP_calls_batch_read

Read multiple call records in a single request

HubSpot MCP_calls_batch_update

Update multiple call records in a single request

HubSpot MCP_calls_batch_archive

Archive (delete) multiple call records in a single request

HubSpot MCP_emails_create

Create a new email record

HubSpot MCP_emails_get

Get details of a specific email

HubSpot MCP_emails_update

Update an existing email record

HubSpot MCP_emails_archive

Archive (delete) an email record

HubSpot MCP_emails_list

List all emails with optional filtering

HubSpot MCP_emails_search

Search emails with specific filters

HubSpot MCP_communications_update_subscription_status

Update subscription status for multiple contacts

HubSpot MCP_emails_batch_create

Create multiple email records in a single request

HubSpot MCP_emails_batch_read

Read multiple email records in a single request

HubSpot MCP_emails_batch_update

Update multiple email records in a single request

HubSpot MCP_emails_batch_archive

Archive (delete) multiple email records in a single request

HubSpot MCP_communications_get_preferences

Get communication preferences for a contact

HubSpot MCP_communications_update_preferences

Update communication preferences for a contact

HubSpot MCP_communications_unsubscribe_contact

Unsubscribe a contact from all email communications

HubSpot MCP_communications_subscribe_contact

Subscribe a contact to all email communications

HubSpot MCP_communications_get_subscription_definitions

Get all subscription definitions for the portal

HubSpot MCP_communications_get_subscription_status

Get subscription status for multiple contacts

Letz AI MCP_letzai_create_image

Create an image using the LetzAI public api

Letz AI MCP_letzai_upscale_image

Upscale an image using the LetzAI public api

time-mcp_get_timestamp

Get the timestamp of a time.

time-mcp_convert_time

Convert time between timezones.

time-mcp_current_time

Get the current date and time.

time-mcp_relative_time

Get the relative time from now.

time-mcp_days_in_month

Get the number of days in a month.

Atlassian Confluence MCP Server_list-spaces

List Confluence spaces with optional filtering capabilities.

PURPOSE: Discovers available spaces in your Confluence instance with their keys, names, types, and URLs.

WHEN TO USE:

  • When you need to discover what spaces exist in your Confluence instance
  • When you want to find spaces by type (global, personal, archived)
  • When you need to browse available spaces before accessing specific pages
  • When you need space keys for use with other Confluence tools

WHEN NOT TO USE:

  • When you already know the specific space key/ID (use get-space instead)
  • When you need detailed information about a specific space (use get-space instead)
  • When you need to find content across multiple spaces (use search instead)
  • When you need to list pages within a specific space (use list-pages instead)

RETURNS: Formatted list of spaces with IDs, keys, names, types, and URLs, plus pagination info.

EXAMPLES:

  • List all spaces: {}
  • Filter by type: {type: "global"}
  • With pagination: {limit: 10, cursor: "next-page-token"}

ERRORS:

  • Authentication failures: Check your Confluence credentials
  • No spaces found: Verify your permissions in Confluence
  • Rate limiting: Use pagination and reduce query frequency
Atlassian Confluence MCP Server_get-space

Get detailed information about a specific Confluence space by ID or key.

PURPOSE: Retrieves comprehensive space metadata including description, homepage, permissions, and more.

WHEN TO USE:

  • When you need detailed information about a specific space
  • When you need to find the homepage or key pages within a space
  • When you need to verify space permissions or settings
  • After using list-spaces to identify the relevant space

WHEN NOT TO USE:

  • When you don't know which space to look for (use list-spaces first)
  • When you need to browse multiple spaces (use list-spaces instead)
  • When you need to find specific content (use search or list-pages instead)

RETURNS: Detailed space information including key, name, description, type, homepage, and metadata.

EXAMPLES:

  • By key: {idOrKey: "DEV"}
  • By ID: {idOrKey: "123456"}

ERRORS:

  • Space not found: Verify the space key or ID is correct
  • Permission errors: Ensure you have access to the requested space
  • Rate limiting: Cache space information when possible
Atlassian Confluence MCP Server_list-pages

List Confluence pages with optional filtering by space and status.

PURPOSE: Finds pages within Confluence spaces with their IDs, titles, and locations to help you discover available content.

WHEN TO USE:

  • When you need to find pages within a specific space
  • When you want to list the most recently updated content
  • When you need to browse available pages before accessing specific content
  • When you need page IDs for use with other Confluence tools
  • When looking for pages with specific statuses (current, draft, trashed)

WHEN NOT TO USE:

  • When you already know the specific page ID (use get-page instead)
  • When you need the actual content of a page (use get-page instead)
  • When you need to search across multiple spaces (use search instead)
  • When you need to find spaces rather than pages (use list-spaces instead)

RETURNS: Formatted list of pages with IDs, titles, space information, and URLs, plus pagination info.

EXAMPLES:

  • Pages in a space: {spaceId: "DEV"}
  • With status filter: {spaceId: "DEV", status: "current"}
  • With pagination: {spaceId: "DEV", limit: 10, cursor: "next-page-token"}

ERRORS:

  • Space not found: Verify the space ID is correct
  • Authentication failures: Check your Confluence credentials
  • No pages found: The space might be empty or you lack permissions
  • Rate limiting: Use pagination and reduce query frequency
Atlassian Confluence MCP Server_get-page

Get detailed information and content of a specific Confluence page by ID.

PURPOSE: Retrieves the full content of a page in Markdown format along with comprehensive metadata.

WHEN TO USE:

  • When you need to read the actual content of a page
  • When you need detailed page metadata (author, dates, versions)
  • When you need to extract specific information from a page
  • After using list-pages or search to identify relevant page IDs

WHEN NOT TO USE:

  • When you don't know which page to look for (use list-pages or search first)
  • When you only need basic page information without content (use list-pages instead)
  • When you need to find content across multiple pages (use search instead)

RETURNS: Complete page content in Markdown format with metadata including title, author, version, space, and creation/modification dates.

EXAMPLES:

  • By ID: {id: "123456"}

ERRORS:

  • Page not found: Verify the page ID is correct
  • Permission errors: Ensure you have access to the requested page
  • Rate limiting: Cache page content when possible for frequently accessed pages
Atlassian Confluence MCP Server_search

Search for content across Confluence using Confluence Query Language (CQL).

PURPOSE: Finds content matching specific criteria with excerpts showing matches, helping you discover relevant information across spaces.

WHEN TO USE:

  • When you need to find specific content across multiple spaces
  • When you want to search by various criteria (text, title, labels, content type)
  • When you need to gather information scattered across different pages
  • When you're unfamiliar with the structure of Confluence and need discovery
  • When looking for content with specific labels or within specific date ranges

WHEN NOT TO USE:

  • When you already know the exact space and page (use get-page instead)
  • When you want to list all spaces or pages systematically (use list-spaces/list-pages)
  • When performing many rapid, consecutive searches (consider rate limits)
  • When you need to retrieve complete page content (use get-page after search)

RETURNS: Search results with titles, excerpts showing matches, content types, spaces, and URLs, plus pagination info.

EXAMPLES:

  • Simple text search: {cql: "text~documentation"}
  • Space-specific search: {cql: "space=DEV AND text~API"}
  • Title search: {cql: "title~Project Plan"}
  • Content type filter: {cql: "type=page AND label=important"}
  • With pagination: {cql: "text~API", limit: 10, cursor: "next-page-token"}

ERRORS:

  • Invalid CQL syntax: Check CQL syntax (example: "type=page AND space=DEV")
  • No results: Try broader search terms or check different spaces
  • Authentication failures: Check your Confluence credentials
  • Rate limiting: Use more specific queries and pagination
URL Shortener MCP_shorten

Shorten a URL using the cleanuri API.

Args: original_url: The URL to shorten.
Nostr MCP Server_getProfile

Get a Nostr profile by public key

Nostr MCP Server_getKind1Notes

Get text notes (kind 1) by public key

Nostr MCP Server_getReceivedZaps

Get zaps received by a public key

Nostr MCP Server_getSentZaps

Get zaps sent by a public key

Nostr MCP Server_getAllZaps

Get all zaps (sent and received) for a public key

Aiven MCP Server_list_projects-
Aiven MCP Server_list_services-
Aiven MCP Server_get_service_details-
Revit MCP_color_elements

Color elements in the current view based on a category and parameter value. Each unique parameter value gets assigned a distinct color.

Revit MCP_get_current_view_elements

Get elements from the current active view in Revit. You can filter by model categories (like Walls, Floors) or annotation categories (like Dimensions, Text). Use includeHidden to show/hide invisible elements and limit to control the number of returned elements.

Revit MCP_create_line_based_element

Create one or more line-based elements in Revit such as walls, beams, or pipes. Supports batch creation with detailed parameters including family type ID, start and end points, thickness, height, and level information. All units are in millimeters (mm).

Revit MCP_create_point_based_element

Create one or more point-based elements in Revit such as doors, windows, or furniture. Supports batch creation with detailed parameters including family type ID, position, dimensions, and level information. All units are in millimeters (mm).

Revit MCP_create_surface_based_element

Create one or more surface-based elements in Revit such as floors, ceilings, or roofs. Supports batch creation with detailed parameters including family type ID, boundary lines, thickness, and level information. All units are in millimeters (mm).

Revit MCP_delete_element

Delete one or more elements from the Revit model by their element IDs.

Revit MCP_get_available_family_types

Get available family types in the current Revit project. You can filter by category and family name, and limit the number of returned types.

Revit MCP_get_current_view_info

Revit

Revit MCP_get_selected_elements

Get elements currently selected in Revit. You can limit the number of returned elements.

Revit MCP_send_code_to_revit

Send C# code to Revit for execution. The code will be inserted into a template with access to the Revit Document and parameters. Your code should be written to work within the Execute method of the template.

Revit MCP_tag_all_walls

Create tags for all walls in the current active view. Tags will be placed at the middle point of each wall.

Starwind UI MCP Server_init_project

Initializes a new project with Starwind UI

Starwind UI MCP Server_install_component

Generates installation commands for Starwind UI components

Starwind UI MCP Server_update_component

Generates update commands for Starwind UI components

Starwind UI MCP Server_get_documentation

Returns documentation links for Starwind UI

Starwind UI MCP Server_fetch_llm_data

Fetches LLM data from starwind.dev (rate limited to 3 requests per minute, with caching)

Starwind UI MCP Server_get_package_manager

Detects and returns the current package manager information

Armor Crypto MCP_create_groups
Create new wallet groups. Expects a list of group names.
Armor Crypto MCP_get_wallet_token_balance
Get the balance for a list of wallet/token pairs. Expects a list of dictionaries each with 'wallet' and 'token' keys.
Armor Crypto MCP_conversion_api
Perform token conversion. Expects a list of conversion requests with keys: input_amount, input_token, output_token.
Armor Crypto MCP_swap_quote
Retrieve a swap quote. Expects a list of swap quote requests.
Armor Crypto MCP_swap_transaction
Execute a swap transaction. Expects a list of swap transaction requests.
Armor Crypto MCP_get_token_details
Retrieve token details. Expects a list of token details requests with keys such as 'query' and 'include_details'.
Armor Crypto MCP_list_groups
List all wallet groups.
Armor Crypto MCP_list_single_group
Retrieve details for a single wallet group. Expects the group name as a parameter.
Armor Crypto MCP_create_wallet
Create new wallets. Expects a list of wallet names.
Armor Crypto MCP_archive_wallets
Archive wallets. Expects a list of wallet names.
Armor Crypto MCP_unarchive_wallets
Unarchive wallets. Expects a list of wallet names.
Armor Crypto MCP_add_wallets_to_group
Add wallets to a specified group. Expects the group name and a list of wallet names.
Armor Crypto MCP_archive_wallet_group
Archive wallet groups. Expects a list of group names.
Armor Crypto MCP_unarchive_wallet_group
Unarchive wallet groups. Expects a list of group names.
Armor Crypto MCP_remove_wallets_from_group
Remove wallets from a specified group. Expects the group name and a list of wallet names.
Armor Crypto MCP_get_user_wallets_and_groups_list
Retrieve the list of user wallets and wallet groups.
Armor Crypto MCP_transfer_tokens
Transfer tokens from one wallet to another. Expects a list of transfer token requests with the necessary parameters.
Armor Crypto MCP_create_dca_order
Create a DCA order. Expects a list of DCA order requests with required parameters.
Armor Crypto MCP_list_dca_orders
List all DCA orders.
Armor Crypto MCP_cancel_dca_order
Cancel a DCA order. Expects a list of cancel DCA order requests with the required order IDs.
PagerDuty MCP Server_list_escalation_policies

List existing escalation policies based on the given criteria.

Args: current_user_context (bool): Whether to use the current user's ID/team IDs context (default: True, cannot be used with user_ids or team_ids) query (str): Filter escalation policies whose names contain the search query (optional) user_ids (List[str]): Filter results to only escalation policies that include the given user IDs (optional, cannot be used with current_user_context) team_ids (List[str]): Filter results to only escalation policies assigned to teams with the given IDs (optional, cannot be used with current_user_context)

Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of escalation policies matching the specified criteria

PagerDuty MCP Server_show_escalation_policy

Show details about a given escalation policy.

Args: policy_id (str): The ID of the escalation policy to show

Returns: Dict[str, Any]: Escalation policy object with detailed information

PagerDuty MCP Server_show_team

Get detailed information about a given team.

Args: team_id (str): The ID of the team to get

Returns: Dict[str, Any]: Team object with detailed information

PagerDuty MCP Server_show_current_user

Get the current user's PagerDuty profile including their teams, contact methods, and notification rules.

Returns: Dict[str, Any]: The user object containing profile information in the following format (note this is non-exhaustive): { "name": "John Doe", "email": "john.doe@example.com", "role": "user", "description": "John Doe is a user at Example Inc.", "job_title": "Software Engineer", "teams": [ { "id": "P123456", "summary": "Team Name 1" }, ... ], "contact_methods": [ { "id": "P123456", "summary": "Mobile" }, ... ], "notification_rules": [ { "id": "P123456", "summary": "0 minutes: channel XYZ" }, ... ], "id": "P123456" }

PagerDuty MCP Server_list_incidents

List PagerDuty incidents based on specified filters.

Args: current_user_context (bool): Boolean, use the current user's team_ids and service_ids to filter (default: True, cannot be used with service_ids or team_ids) service_ids (List[str]): list of PagerDuty service IDs to filter by (optional, cannot be used with current_user_context) team_ids (List[str]): list of PagerDuty team IDs to filter by (optional, cannot be used with current_user_context) statuses (List[str]): list of status values to filter by (optional). Valid values are: - 'triggered' - The incident is currently active (included by default) - 'acknowledged' - The incident has been acknowledged by a user (included by default) - 'resolved' - The incident has been resolved (excluded by default) since (str): Start of date range in ISO8601 format (optional). Default is 1 month ago until (str): End of date range in ISO8601 format (optional). Default is now

Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of incidents matching the specified criteria

PagerDuty MCP Server_show_incident

Get detailed information about a given incident.

Args: incident_id (str): The ID or number of the incident to get

Returns: Dict[str, Any]: Incident object with detailed information

PagerDuty MCP Server_list_oncalls

List the on-call entries during a given time range.

Args: current_user_context (bool): Use the current user's ID to filter (default: True, cannot be used with user_ids or escalation_policy_ids) schedule_ids (List[str]): Return only on-calls for the specified schedule IDs (optional) user_ids (List[str]): Return only on-calls for the specified user IDs (optional, cannot be used with current_user_context) escalation_policy_ids (List[str]): Return only on-calls for the specified escalation policy IDs (optional, cannot be used with current_user_context) since (str): Start of date range in ISO8601 format (optional). Default is 1 month ago until (str): End of date range in ISO8601 format (optional). Default is now

Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of on-call entries matching the specified criteria

PagerDuty MCP Server_list_schedules

List the on-call schedules.

Args: query (str): Filter schedules whose names contain the search query (optional)

Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of schedules matching the specified criteria

PagerDuty MCP Server_show_schedule

Show detailed information about a given schedule.

Args: schedule_id (str): The ID of the schedule to get since (str): The start of the time range over which you want to search. Defaults to 2 weeks before until if an until is given. (optional) until (str): The end of the time range over which you want to search. Defaults to 2 weeks after since if a since is given. (optional)

Returns: Dict[str, Any]: Schedule object with detailed information

PagerDuty MCP Server_list_services

List existing PagerDuty services.

Args: current_user_context (bool): Use the current user's team IDs to filter (default: True, cannot be used with team_ids) team_ids (List[str]): Filter results to only services assigned to teams with the given IDs (optional, cannot be used with current_user_context) query (str): Filter services whose names contain the search query (optional)

Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of services matching the specified criteria

PagerDuty MCP Server_show_service

Get details about a given service.

Args: service_id (str): The ID of the service to get

Returns: Dict[str, Any]: Service object with detailed information

PagerDuty MCP Server_list_teams

List teams in your PagerDuty account.

Args: query (str): Filter teams whose names contain the search query (optional)

Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of teams matching the specified criteria

PagerDuty MCP Server_list_users

List users in PagerDuty.

Args: current_user_context (bool): Use the current user's team IDs to filter (default: True, cannot be used with team_ids) team_ids (List[str]): A list of team IDs to filter users (optional, cannot be used with current_user_context) query (str): A search query to filter users (optional)

Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of users matching the specified criteria

PagerDuty MCP Server_show_user

Get detailed information about a given user. Args: user_id (str): The ID of the user to get

Returns: Dict[str, Any]: User object with detailed information

MCP Outline Server_list_trash
Displays all documents currently in the trash. Use this tool when you need to: - Find deleted documents that can be restored - Review what documents are pending permanent deletion - Identify documents to restore from trash - Verify if specific documents were deleted Returns: Formatted string containing list of documents in trash
MCP Outline Server_search_documents
Searches for documents using keywords or phrases across your knowledge base. IMPORTANT: The search performs full-text search across all document content and titles. Results are ranked by relevance, with exact matches and title matches typically ranked higher. The search will return snippets of content (context) where the search terms appear in the document. You can limit the search to a specific collection by providing the collection_id. Use this tool when you need to: - Find documents containing specific terms or topics - Locate information across multiple documents - Search within a specific collection using collection_id - Discover content based on keywords Args: query: Search terms (e.g., "vacation policy" or "project plan") collection_id: Optional collection to limit the search to Returns: Formatted string containing search results with document titles and contexts
MCP Outline Server_list_collections
Retrieves and displays all available collections in the workspace. Use this tool when you need to: - See what collections exist in the workspace - Get collection IDs for other operations - Explore the organization of the knowledge base - Find a specific collection by name Returns: Formatted string containing collection names, IDs, and descriptions
MCP Outline Server_get_collection_structure
Retrieves the hierarchical document structure of a collection. Use this tool when you need to: - Understand how documents are organized in a collection - Find document IDs within a specific collection - See the parent-child relationships between documents - Get an overview of a collection's content structure Args: collection_id: The collection ID to examine Returns: Formatted string showing the hierarchical structure of documents
MCP Outline Server_get_document_id_from_title
Locates a document ID by searching for its title. IMPORTANT: This tool first checks for exact title matches (case-insensitive). If none are found, it returns the best partial match instead. This is useful when you're not sure of the exact title but need to reference a document in other operations. Results are more accurate when you provide more of the actual title in your query. Use this tool when you need to: - Find a document's ID when you only know its title - Get the document ID for use in other operations - Verify if a document with a specific title exists - Find the best matching document if exact title is unknown Args: query: Title to search for (can be exact or partial) collection_id: Optional collection to limit the search to Returns: Document ID if found, or best match information
MCP Outline Server_read_document
Retrieves and displays the full content of a document. Use this tool when you need to: - Access the complete content of a specific document - Review document information in detail - Quote or reference document content - Analyze document contents Args: document_id: The document ID to retrieve Returns: Formatted string containing the document title and content
MCP Outline Server_export_document
Exports a document as plain markdown text. Use this tool when you need to: - Get clean markdown content without formatting - Extract document content for external use - Process document content in another application - Share document content outside Outline Args: document_id: The document ID to export Returns: Document content in markdown format without additional formatting
MCP Outline Server_create_document
Creates a new document in a specified collection. Use this tool when you need to: - Add new content to a knowledge base - Create documentation, guides, or notes - Add a child document to an existing parent - Start a new document thread or topic Args: title: The document title collection_id: The collection ID to create the document in text: Optional markdown content for the document parent_document_id: Optional parent document ID for nesting publish: Whether to publish the document immediately (True) or save as draft (False) Returns: Result message with the new document ID
MCP Outline Server_update_document
Modifies an existing document's title or content. IMPORTANT: This tool replaces the document content rather than just

adding to it. To update a document with changed data, you need to first read the document, add your changes to the content, and then send the complete document with your changes.

Use this tool when you need to: - Edit or update document content - Change a document's title - Append new content to an existing document - Fix errors or add information to documents Args: document_id: The document ID to update title: New title (if None, keeps existing title) text: New content (if None, keeps existing content) append: If True, adds text to the end of document instead of replacing Returns: Result message confirming update
MCP Outline Server_add_comment
Adds a comment to a document or replies to an existing comment. Use this tool when you need to: - Provide feedback on document content - Ask questions about specific information - Reply to another user's comment - Collaborate with others on document development Args: document_id: The document to comment on text: The comment text (supports markdown) parent_comment_id: Optional ID of a parent comment (for replies) Returns: Result message with the new comment ID
MCP Outline Server_move_document
Relocates a document to a different collection or parent document. IMPORTANT: When moving a document that has child documents (nested documents), all child documents will move along with it, maintaining their hierarchical structure. You must specify either collection_id or parent_document_id (or both). Use this tool when you need to: - Reorganize your document hierarchy - Move a document to a more relevant collection - Change a document's parent document - Restructure content organization Args: document_id: The document ID to move collection_id: Target collection ID (if moving between collections) parent_document_id: Optional parent document ID (for nesting) Returns: Result message confirming the move operation
MCP Outline Server_archive_document
Archives a document to remove it from active use while preserving it. IMPORTANT: Archived documents are removed from collections but remain searchable in the system. They won't appear in normal collection views but can still be found through search or the archive list. Use this tool when you need to: - Remove outdated or inactive documents from view - Clean up collections while preserving document history - Preserve documents that are no longer relevant - Temporarily hide documents without deleting them Args: document_id: The document ID to archive Returns: Result message confirming archival
MCP Outline Server_unarchive_document
Restores a previously archived document to active status. Use this tool when you need to: - Restore archived documents to active use - Access or reference previously archived content - Make archived content visible in collections again - Update and reuse archived documents Args: document_id: The document ID to unarchive Returns: Result message confirming restoration
MCP Outline Server_delete_document
Moves a document to trash or permanently deletes it. IMPORTANT: When permanent=False (the default), documents are moved to trash and retained for 30 days before being permanently deleted. During this period, they can be restored using the restore_document tool. Setting permanent=True bypasses the trash and immediately deletes the document without any recovery option. Use this tool when you need to: - Remove unwanted or unnecessary documents - Delete obsolete content - Clean up workspace by removing documents - Permanently remove sensitive information (with permanent=True) Args: document_id: The document ID to delete permanent: If True, permanently deletes the document without recovery option Returns: Result message confirming deletion
MCP Outline Server_restore_document
Recovers a document from the trash back to active status. Use this tool when you need to: - Retrieve accidentally deleted documents - Restore documents from trash to active use - Recover documents deleted within the last 30 days - Access content that was previously trashed Args: document_id: The document ID to restore Returns: Result message confirming restoration
MCP Outline Server_list_archived_documents
Displays all documents that have been archived. Use this tool when you need to: - Find specific archived documents - Review what documents have been archived - Identify documents for possible unarchiving - Check archive status of workspace content Returns: Formatted string containing list of archived documents
MCP Outline Server_list_document_comments
Retrieves comments on a specific document with pagination support. IMPORTANT: By default, this returns up to 25 comments at a time. If there are more than 25 comments on the document, you'll need to make multiple calls with different offset values to get all comments. The response will indicate if there are more comments available. Use this tool when you need to: - Review feedback and discussions on a document - See all comments from different users - Find specific comments or questions - Track collaboration and input on documents Args: document_id: The document ID to get comments from include_anchor_text: Whether to include the document text that comments refer to limit: Maximum number of comments to return (default: 25) offset: Number of comments to skip for pagination (default: 0) Returns: Formatted string containing comments with author, date, and optional anchor text
MCP Outline Server_get_comment
Retrieves a specific comment by its ID. Use this tool when you need to: - View details of a specific comment - Reference or quote a particular comment - Check comment content and metadata - Find a comment mentioned elsewhere Args: comment_id: The comment ID to retrieve include_anchor_text: Whether to include the document text that the comment refers to Returns: Formatted string with the comment content and metadata
MCP Outline Server_get_document_backlinks
Finds all documents that link to a specific document. Use this tool when you need to: - Discover references to a document across the workspace - Identify dependencies between documents - Find documents related to a specific document - Understand document relationships and connections Args: document_id: The document ID to find backlinks for Returns: Formatted string listing all documents that link to the specified

document

MCP Outline Server_create_collection
Creates a new collection for organizing documents. Use this tool when you need to: - Create a new section or category for documents - Set up a workspace for a new project or team - Organize content by department or topic - Establish a separate space for related documents Args: name: Name for the collection description: Optional description of the collection's purpose color: Optional hex color code for visual identification (e.g. #FF0000) Returns: Result message with the new collection ID
MCP Outline Server_update_collection
Modifies an existing collection's properties. Use this tool when you need to: - Rename a collection - Update a collection's description - Change a collection's color coding - Refresh collection metadata Args: collection_id: The collection ID to update name: Optional new name for the collection description: Optional new description color: Optional new hex color code (e.g. #FF0000) Returns: Result message confirming update
MCP Outline Server_delete_collection
Permanently removes a collection and all its documents. Use this tool when you need to: - Remove an entire section of content - Delete obsolete project collections - Remove collections that are no longer needed - Clean up workspace organization WARNING: This action cannot be undone and will delete all documents

within the collection.

Args: collection_id: The collection ID to delete Returns: Result message confirming deletion
MCP Outline Server_export_collection
Exports all documents in a collection to a downloadable file. IMPORTANT: This tool starts an asynchronous export operation which may take time to complete. The function returns information about the operation, including its status. When the operation is complete, the file can be downloaded or accessed via Outline's UI. The export preserves the document hierarchy and includes all document content and structure in the specified format. Use this tool when you need to: - Create a backup of collection content - Share collection content outside of Outline - Convert collection content to other formats - Archive collection content for offline use Args: collection_id: The collection ID to export format: Export format ("outline-markdown", "json", or "html") Returns: Information about the export operation and how to access the file
MCP Outline Server_export_all_collections
Exports the entire workspace content to a downloadable file. IMPORTANT: This tool starts an asynchronous export operation which may take time to complete, especially for large workspaces. The function returns information about the operation, including its status. When the operation is complete, the file can be downloaded or accessed via Outline's UI. The export includes all collections, documents, and their hierarchies in the specified format. Use this tool when you need to: - Create a complete backup of all workspace content - Migrate content to another system - Archive all workspace documents - Get a comprehensive export of knowledge base Args: format: Export format ("outline-markdown", "json", or "html") Returns: Information about the export operation and how to access the file
MCP Outline Server_ask_ai_about_documents
Queries document content using natural language questions. Use this tool when you need to: - Find specific information across multiple documents - Get direct answers to questions about document content - Extract insights from your knowledge base - Answer questions like "What is our vacation policy?" or "How do we

onboard new clients?"

Args: question: The natural language question to ask collection_id: Optional collection to limit the search to document_id: Optional document to limit the search to Returns: AI-generated answer based on document content with sources
Shodan MCP Server_get_host_info

Get detailed information about a specific IP address

Shodan MCP Server_search_shodan

Search Shodan's database for devices and services

Shodan MCP Server_scan_network_range

Scan a network range (CIDR notation) for devices

Shodan MCP Server_get_ssl_info

Get SSL certificate information for a domain

Shodan MCP Server_search_iot_devices

Search for specific types of IoT devices

Microsoft Todo MCP Service_auth-status

Check if you're authenticated with Microsoft Graph API. Shows current token status and expiration time, and indicates if the token needs to be refreshed.

Microsoft Todo MCP Service_get-task-lists

Get all Microsoft Todo task lists (the top-level containers that organize your tasks). Shows list names, IDs, and indicates default or shared lists.

Microsoft Todo MCP Service_create-task-list

Create a new task list (top-level container) in Microsoft Todo to help organize your tasks into categories or projects.

Microsoft Todo MCP Service_update-task-list

Update the name of an existing task list (top-level container) in Microsoft Todo.

Microsoft Todo MCP Service_delete-task-list

Delete a task list (top-level container) from Microsoft Todo. This will remove the list and all tasks within it.

Microsoft Todo MCP Service_get-tasks

Get tasks from a specific Microsoft Todo list. These are the main todo items that can contain checklist items (subtasks).

Microsoft Todo MCP Service_create-task

Create a new task in a specific Microsoft Todo list. A task is the main todo item that can have a title, description, due date, and other properties.

Microsoft Todo MCP Service_update-task

Update an existing task in Microsoft Todo. Allows changing any properties of the task including title, due date, importance, etc.

Microsoft Todo MCP Service_delete-task

Delete a task from a Microsoft Todo list. This will remove the task and all its checklist items (subtasks).

Microsoft Todo MCP Service_get-checklist-items

Get checklist items (subtasks) for a specific task. Checklist items are smaller steps or components that belong to a parent task.

Microsoft Todo MCP Service_create-checklist-item

Create a new checklist item (subtask) for a task. Checklist items help break down a task into smaller, manageable steps.

Microsoft Todo MCP Service_update-checklist-item

Update an existing checklist item (subtask). Allows changing the text content or completion status of the subtask.

Microsoft Todo MCP Service_delete-checklist-item

Delete a checklist item (subtask) from a task. This removes just the specific subtask, not the parent task.

Zotero MCP_zotero_search_items

Search for items in your Zotero library, given a query string.

Zotero MCP_zotero_get_item_metadata

Get detailed metadata for a specific Zotero item by its key.

Zotero MCP_zotero_get_item_fulltext

Get the full text content of a Zotero item by its key.

Zotero MCP_zotero_get_collections

List all collections in your Zotero library.

Zotero MCP_zotero_get_collection_items

Get all items in a specific Zotero collection.

Zotero MCP_zotero_get_item_children

Get all child items (attachments, notes) for a specific Zotero item.

Zotero MCP_zotero_get_tags

Get all tags used in your Zotero library.

Zotero MCP_zotero_get_recent

Get recently added items to your Zotero library.

Zotero MCP_zotero_batch_update_tags

Batch update tags across multiple items matching a search query.

Zotero MCP_zotero_advanced_search

Perform an advanced search with multiple criteria.

S3 MCP Server_list-buckets

List available S3 buckets

S3 MCP Server_list-objects

List objects in an S3 bucket

S3 MCP Server_get-object

Retrieve an object from an S3 bucket

Linear_linear_getIssueById

Get a specific issue by ID or identifier (e.g., ABC-123)

Linear_linear_duplicateIssue

Duplicate an issue

Linear_linear_getIssueHistory

Get the history of changes made to an issue

Linear_linear_getViewer

Get information about the currently authenticated user

Linear_linear_getOrganization

Get information about the current Linear organization

Linear_linear_getUsers

Get a list of users in the Linear organization

Linear_linear_getLabels

Get a list of issue labels from Linear

Linear_linear_getTeams

Get a list of teams from Linear

Linear_linear_getWorkflowStates

Get workflow states for a team

Linear_linear_getProjects

Get a list of projects from Linear

Linear_linear_createProject

Create a new project in Linear

Linear_linear_updateProject

Update an existing project in Linear

Linear_linear_addIssueToProject

Add an existing issue to a project

Linear_linear_getProjectIssues

Get all issues associated with a project

Linear_linear_getCycles

Get a list of all cycles

Linear_linear_getActiveCycle

Get the currently active cycle for a team

Linear_linear_addIssueToCycle

Add an issue to a cycle

Linear_linear_getIssues

Get a list of recent issues from Linear

Linear_linear_searchIssues

Search for issues with various filters

Linear_linear_createIssue

Create a new issue in Linear

Linear_linear_updateIssue

Update an existing issue in Linear

Linear_linear_createComment

Add a comment to an issue in Linear

Linear_linear_addIssueLabel

Add a label to an issue in Linear

Linear_linear_removeIssueLabel

Remove a label from an issue in Linear

Linear_linear_assignIssue

Assign an issue to a user

Linear_linear_subscribeToIssue

Subscribe to issue updates

Linear_linear_convertIssueToSubtask

Convert an issue to a subtask

Linear_linear_createIssueRelation

Create relations between issues (blocks, is blocked by, etc.)

Linear_linear_archiveIssue

Archive an issue

Linear_linear_setIssuePriority

Set the priority of an issue

Linear_linear_transferIssue

Transfer an issue to another team

Linear_linear_getComments

Get all comments for an issue

Think Tool MCP Server_think

Use the tool to think about something. It will not obtain new information or change the database, but just append the thought to the log. Use it when complex reasoning or some cache memory is needed.

crypto-sentiment-mcp_get_sentiment_balance

Retrieve the sentiment balance (sentiment_balance_total) for a given asset.

Parameters:

  • asset (str): The cryptocurrency slug (e.g., "bitcoin", "ethereum"). Required.
  • days (int): Number of days to calculate the average sentiment balance, defaults to 7.

Usage:

  • Use this tool to get the average sentiment balance (positive minus negative sentiment) over a period.

Returns:

  • A string with the average sentiment balance (e.g., "Bitcoin's sentiment balance over the past 7 days is 12.5").
crypto-sentiment-mcp_get_social_volume

Retrieve the total social volume (social_volume_total) for a given asset. It calculates the total number of social data text documents that contain the given search term at least once. Examples of documents are telegram messages and reddit posts.

Parameters:

  • asset (str): The cryptocurrency slug (e.g., "bitcoin", "ethereum"). Required.
  • days (int): Number of days to sum the social volume, defaults to 7.

Usage:

  • Call this tool to get the total number of social media mentions for an asset over a period.

Returns:

  • A string with the total social volume (e.g., "Bitcoin's social volume over the past 7 days is 15,000 mentions").
crypto-sentiment-mcp_alert_social_shift

Detect significant shifts (spikes or drops) in social volume (social_volume_total) for a given asset.

Parameters:

  • asset (str): The cryptocurrency slug (e.g., "bitcoin", "ethereum"). Required.
  • threshold (float): Minimum percentage change (absolute value) to trigger an alert, defaults to 50.0 (i.e., 50%).
  • days (int): Number of days to analyze for baseline volume, defaults to 7.

Usage:

  • Call this tool to check if the latest social volume has significantly spiked or dropped compared to the previous average.

Returns:

  • A string indicating if a shift occurred (e.g., "Bitcoin's social volume spiked by 75.0% in the last 24 hours" or "Bitcoin's social volume dropped by 60.0% in the last 24 hours").
crypto-sentiment-mcp_get_trending_words

Retrieve the top trending words in the crypto space over a specified period, aggregated and ranked by score.

Parameters:

  • days (int): Number of days to analyze trending words, defaults to 7.
  • top_n (int): Number of top trending words to return, defaults to 5.

Usage:

  • Call this tool to get a list of the most popular words trending in cryptocurrency discussions, ranked across the entire period.

Returns:

  • A string listing the top trending words (e.g., "Top 5 trending words over the past 7 days: 'halving', 'bullrun', 'defi', 'nft', 'pump'").
crypto-sentiment-mcp_get_social_dominance

Retrieve the social dominance (social_dominance_total) for a given asset. Social Dominance shows the share of the discussions in crypto media that is referring to a particular asset or phrase.

Parameters:

  • asset (str): The cryptocurrency slug (e.g., "bitcoin", "ethereum"). Required.
  • days (int): Number of days to calculate average social dominance, defaults to 7.

Usage:

  • Call this tool to get the percentage of social media discussion dominated by the asset.

Returns:

  • A string with the average social dominance (e.g., "Bitcoin's social dominance over the past 7 days is 25.3%").
taskqueue-mcp_list_projects

List all projects in the system and their basic information (ID, initial prompt, task counts), optionally filtered by state (open, pending_approval, completed, all).

taskqueue-mcp_read_project

Read all information for a given project, by its ID, including its tasks' statuses.

taskqueue-mcp_create_project

Create a new project with an initial prompt and a list of tasks. This is typically the first step in any workflow.

taskqueue-mcp_delete_project

Delete a project and all its associated tasks.

taskqueue-mcp_add_tasks_to_project

Add new tasks to an existing project.

taskqueue-mcp_finalize_project

Mark a project as complete. Can only be called when all tasks are both done and approved. This is typically the last step in a project workflow.

taskqueue-mcp_list_tasks

List all tasks, optionally filtered by project ID and/or state (open, pending_approval, completed, all). Tasks may include tool and rule recommendations to guide their completion.

taskqueue-mcp_read_task

Get details of a specific task by its ID. The task may include toolRecommendations and ruleRecommendations fields that should be used to guide task completion.

taskqueue-mcp_create_task

Create a new task within an existing project. You can optionally include tool and rule recommendations to guide task completion.

taskqueue-mcp_update_task

Modify a task's properties. Note: (1) completedDetails are required when setting status to 'done', (2) approved tasks cannot be modified, (3) status must follow valid transitions: not started in progress done. You can also update tool and rule recommendations to guide task completion.

taskqueue-mcp_delete_task

Remove a task from a project.

taskqueue-mcp_approve_task

Approve a completed task. Tasks must be marked as 'done' with completedDetails before approval. Note: This is a CLI-only operation that requires human intervention.

taskqueue-mcp_get_next_task

Get the next task to be done in a project. Returns the first non-approved task in sequence, regardless of status. The task may include toolRecommendations and ruleRecommendations fields that should be used to guide task completion.

ZIP-MCP_compress

Compress local files or directories into a ZIP file

ZIP-MCP_decompress

Decompress local ZIP file to specified directory

ZIP-MCP_getZipInfo

Get metadata information of a local ZIP file

ZIP-MCP_echo

Return the input message (for testing)

MySql MCP Server_use_database

Switch to a different database.

MySql MCP Server_set_readonly

Enable or disable read-only mode

MySql MCP Server_list_tables

Get a list of tables in the current database.

MySql MCP Server_describe_table

Get the structure of a specific table.

MySql MCP Server_list_databases

Get a list of all accessible databases on the server.

MySql MCP Server_status

Check the current database connection status.

MySql MCP Server_connect

Connect to a MySQL database.

MySql MCP Server_disconnect

Close the current MySQL database connection.

MySql MCP Server_query

Execute an SQL query on the connected database.

Japanese Text Analyzer_count-chars

Windows C:\Users...WSL/Linux /c/Users/...

Japanese Text Analyzer_count-words

Windows C:\Users...WSL/Linux /c/Users/...

Japanese Text Analyzer_count-clipboard-chars-
Japanese Text Analyzer_count-clipboard-words-
Strava MCP Server_get_user_activities

Get the authenticated user's activities.

Args: ctx: The MCP request context before: An epoch timestamp for filtering activities before a certain time after: An epoch timestamp for filtering activities after a certain time page: Page number per_page: Number of items per page

Returns: List of activities

Strava MCP Server_get_activity

Get details of a specific activity.

Args: ctx: The MCP request context activity_id: The ID of the activity include_all_efforts: Whether to include all segment efforts

Returns: The activity details

Strava MCP Server_get_activity_segments

Get the segments of a specific activity.

Args: ctx: The MCP request context activity_id: The ID of the activity

Returns: List of segment efforts for the activity

Weather MCP Server_weather

It fetches the latest weather reports for the given city. Args: city (str): The city name for which weather reports are required. Returns: dict: The weather reports for the given city.

User Feedback_user_feedback

Request user feedback for a given project directory and summary

Vibe Check MCP_vibe_check

Metacognitive questioning tool that identifies assumptions and breaks tunnel vision to prevent cascading errors

Vibe Check MCP_vibe_distill

Plan simplification tool that reduces complexity and extracts essential elements to prevent over-engineering

Vibe Check MCP_vibe_learn

Pattern recognition system that tracks common errors and solutions to prevent recurring issues

cloudinary-mcp-server_upload

Upload a file (asset) to Cloudinary

cloudinary-mcp-server_delete-asset

Delete a file (asset) from Cloudinary

cloudinary-mcp-server_get-asset

Get the details of a specific file (asset)

cloudinary-mcp-server_find-assets

Search for existing files (assets) in Cloudinary with a query expression

cloudinary-mcp-server_get-usage

Get a report on the status of your product environment usage, including storage, credits, bandwidth, requests, number of resources, and add-on usage

mcp-sleep_sleep

If you need to wait for a few seconds to continue with the task you are performing .

Tripo MCP Server_get_scene_info

Get detailed information about the current Blender scene

Tripo MCP Server_get_object_info
Get detailed information about a specific object in the Blender scene. Parameters: - object_name: The name of the object to get information about
Tripo MCP Server_create_object
Create a new object in the Blender scene. Parameters: - type: Object type (CUBE, SPHERE, CYLINDER, PLANE, CONE, TORUS, EMPTY, CAMERA, LIGHT) - name: Optional name for the object - location: Optional [x, y, z] location coordinates - rotation: Optional [x, y, z] rotation in radians - scale: Optional [x, y, z] scale factors
Tripo MCP Server_modify_object
Modify an existing object in the Blender scene. Parameters: - name: Name of the object to modify - location: Optional [x, y, z] location coordinates - rotation: Optional [x, y, z] rotation in radians - scale: Optional [x, y, z] scale factors - visible: Optional boolean to set visibility
Tripo MCP Server_delete_object
Delete an object from the Blender scene. Parameters: - name: Name of the object to delete
Tripo MCP Server_set_material
Set or create a material for an object. Parameters: - object_name: Name of the object to apply the material to - material_name: Optional name of the material to use or create - color: Optional [R, G, B] color values (0.0-1.0)
Tripo MCP Server_execute_blender_code
Execute arbitrary Python code in Blender. Parameters: - code: The Python code to execute
Tripo MCP Server_get_polyhaven_categories
Get a list of categories for a specific asset type on Polyhaven. Parameters: - asset_type: The type of asset to get categories for (hdris, textures, models, all)
Tripo MCP Server_search_polyhaven_assets
Search for assets on Polyhaven with optional filtering. Parameters: - asset_type: Type of assets to search for (hdris, textures, models, all) - categories: Optional comma-separated list of categories to filter by Returns a list of matching assets with basic information.
Tripo MCP Server_download_polyhaven_asset
Download and import a Polyhaven asset into Blender. Parameters: - asset_id: The ID of the asset to download - asset_type: The type of asset (hdris, textures, models) - resolution: The resolution to download (e.g., 1k, 2k, 4k) - file_format: Optional file format (e.g., hdr, exr for HDRIs; jpg, png for textures; gltf, fbx for models) Returns a message indicating success or failure.
Tripo MCP Server_set_texture
Apply a previously downloaded Polyhaven texture to an object. Parameters: - object_name: Name of the object to apply the texture to - texture_id: ID of the Polyhaven texture to apply (must be downloaded first) Returns a message indicating success or failure.
Tripo MCP Server_get_polyhaven_status
Check if PolyHaven integration is enabled in Blender. Returns a message indicating whether PolyHaven features are available.
Tripo MCP Server_create_3d_model_from_text
Create a 3D model from a text description using the Tripo API. IMPORTANT: This tool initiates a 3D model generation task but does NOT wait for completion. After calling this tool, you MUST repeatedly call the get_task_status tool with the returned task_id until the task status is SUCCESS or a terminal error state. Typical workflow: 1. Call create_3d_model_from_text to start the task 2. Get the task_id from the response 3. Call get_task_status with the task_id 4. If status is not SUCCESS, wait a moment and call get_task_status again 5. Repeat until status is SUCCESS or a terminal error state 6. When status is SUCCESS, use the pbr_model_url from the response Args: describe_the_look_of_object: A detailed description of the object to generate. face_limit: The maximum number of faces in the model. auto_size: Whether to automatically size the model. Returns: A dictionary containing the task ID and instructions for checking the status.
Tripo MCP Server_import_tripo_glb_model
Import a GLB model from URL into Blender scene Parameters: - glb_url: Download URL of the GLB model file Returns: Result message of the import operation
Tripo MCP Server_get_task_status
Get the status of a 3D model generation task. IMPORTANT: This tool checks the status of a task started by create_3d_model_from_text. You may need to call this tool MULTIPLE TIMES until the task completes. Typical workflow: 1. Call this tool with the task_id from create_3d_model_from_text 2. Check the status in the response: - If status is SUCCESS, the task is complete and you can use the pbr_model_url - If status is FAILED, CANCELLED, BANNED, or EXPIRED, the task failed - If status is anything else, the task is still in progress 3. If the task is still in progress, wait a moment and call this tool again Args: task_id: The ID of the task to check (obtained from create_3d_model_from_text). Returns: A dictionary containing the task status and other information.
gotoHuman MCP_list-forms

List all available review forms. NOTE: You need to fetch the schema for the form fields first using the get-form-schema tool.

gotoHuman MCP_get-form-schema

Get the schema to use for the 'fields' property when requesting a human review with a form.

gotoHuman MCP_request-human-review-with-form

Request a human review with a form. NOTE: If you don't have a form ID yet, list all available forms using the list-forms tool first. To know what to pass for fieldData, you need to fetch the schema for the form fields using the get-form-schema tool.

CoinMarketCap MCP_exchangeMap

Returns a mapping of all exchanges to unique CoinMarketCap IDs.

CoinMarketCap MCP_globalMetricsLatest

Returns the latest global cryptocurrency market metrics.

CoinMarketCap MCP_cryptoCategories

Returns information about all coin categories available on CoinMarketCap.

CoinMarketCap MCP_cryptoCategory

Returns information about a single coin category on CoinMarketCap.

CoinMarketCap MCP_cryptoCurrencyMap

Returns a mapping of all cryptocurrencies to unique CoinMarketCap IDs.

CoinMarketCap MCP_getCryptoMetadata

Returns all static metadata for one or more cryptocurrencies including logo, description, and website URLs.

CoinMarketCap MCP_allCryptocurrencyListings

Returns a paginated list of all active cryptocurrencies with latest market data.

CoinMarketCap MCP_cryptoQuotesLatest

Returns the latest market quote for one or more cryptocurrencies.

CoinMarketCap MCP_dexInfo

Returns all static metadata for one or more decentralised exchanges.

CoinMarketCap MCP_dexListingsLatest

Returns a paginated list of all decentralised cryptocurrency exchanges including the latest aggregate market data.

CoinMarketCap MCP_dexNetworksList

Returns a list of all networks to unique CoinMarketCap ids.

CoinMarketCap MCP_dexSpotPairsLatest

Returns a paginated list of all active dex spot pairs with latest market data.

CoinMarketCap MCP_dexPairsQuotesLatest

Returns the latest market quote for 1 or more spot pairs.

CoinMarketCap MCP_dexPairsOhlcvLatest

Returns the latest OHLCV market values for one or more spot pairs for the current UTC day.

CoinMarketCap MCP_dexPairsOhlcvHistorical

Returns historical OHLCV data along with market cap for any spot pairs using time interval parameters.

CoinMarketCap MCP_dexPairsTradeLatest

Returns up to the latest 100 trades for 1 spot pair.

CoinMarketCap MCP_exchangeAssets

Returns the assets/token holdings of an exchange.

CoinMarketCap MCP_exchangeInfo

Returns metadata for one or more exchanges.

CoinMarketCap MCP_cmc100IndexHistorical

Returns an interval of historic CoinMarketCap 100 Index values based on the interval parameter.

CoinMarketCap MCP_cmc100IndexLatest

Returns the lastest CoinMarketCap 100 Index value, constituents, and constituent weights.

CoinMarketCap MCP_fearAndGreedLatest

Returns the latest CMC Crypto Fear and Greed Index value.

CoinMarketCap MCP_fearAndGreedHistorical

Returns historical CMC Crypto Fear and Greed Index values.

CoinMarketCap MCP_fiatMap

Returns a mapping of all supported fiat currencies to unique CoinMarketCap IDs.

CoinMarketCap MCP_getPostmanCollection

Returns a Postman collection for the CoinMarketCap API.

CoinMarketCap MCP_priceConversion

Convert an amount of one cryptocurrency or fiat currency into one or more different currencies.

CoinMarketCap MCP_keyInfo

Returns API key details and usage stats.

Bluesky MCP Server_search-people

Search for users/actors on Bluesky

Bluesky MCP Server_get-my-handle-and-did

Return the handle and did of the currently authenticated user for this blusesky session. Useful for when someone asks information about themselves using "me" or "my" on bluesky.

Bluesky MCP Server_get-timeline-posts

Fetch your home timeline from Bluesky, which includes posts from all of the people you follow in reverse chronological order

Bluesky MCP Server_create-post

Create a new post on Bluesky

Bluesky MCP Server_get-profile

Get a user's profile from Bluesky

Bluesky MCP Server_search-posts

Search for posts on Bluesky

Bluesky MCP Server_search-feeds

Search for custom feeds on Bluesky

Bluesky MCP Server_get-liked-posts

Get a list of posts that the authenticated user has liked

Bluesky MCP Server_get-trends

Get current trending topics on Bluesky

Bluesky MCP Server_like-post

Like a post on Bluesky

Bluesky MCP Server_follow-user

Follow a user on Bluesky

Bluesky MCP Server_get-pinned-feeds

Get the authenticated user's pinned feeds and lists.

Bluesky MCP Server_get-feed-posts

Fetch posts from a specified feed

Bluesky MCP Server_get-list-posts

Fetch posts from users in a specified list

Bluesky MCP Server_get-user-posts

Fetch posts from a specific user

Bluesky MCP Server_get-follows

Get a list of users that a person follows

Bluesky MCP Server_get-post-likes

Get information about users who have liked a specific post

Bluesky MCP Server_list-resources

List all available MCP resources with their descriptions

MCP Feishu Project Manager_get_view_list
Args: work_item_type_key: "story""version""issue",
MCP Feishu Project Manager_get_view_detail
Args: view_id: page_num: 1 page_size: 20
MCP Feishu Project Manager_get_work_item_detail
Args: work_item_type_key: "story""version""issue", work_item_ids: IDID
MCP Feishu Project Manager_get_work_item_type_meta
- "fields" Args: work_item_type_key: "story""version""issue",
MCP Shell Server_shell_exec

Executes commands in the specified shell

Fewsats MCP Server_pay_offer

Pays an offer_id from the l402_offers.

The l402_offer parameter must be a dict with this structure: { 'offers': [ { 'offer_id': 'test_offer_2', # String identifier for the offer 'amount': 1, # Numeric cost value 'currency': 'usd', # Currency code 'description': 'Test offer', # Text description 'title': 'Test Package' # Title of the package } ], 'payment_context_token': '60a8e027-8b8b-4ccf-b2b9-380ed0930283', # Payment context token 'payment_request_url': 'https://api.fewsats.com/v0/l402/payment-request', # Payment URL 'version': '0.2.2' # API version } Returns payment status response. If payment status is `needs_review` inform the user he will have to approve it at app.fewsats.com
Fewsats MCP Server_payment_info

Retrieve the details of a payment. If payment status is needs_review inform the user he will have to approve it at app.fewsats.com

Fewsats MCP Server_balance

Retrieve the balance of the user's wallet. You will rarely need to call this unless instructed by the user, or to troubleshoot payment issues. Fewsats will automatically add balance when needed.

Fewsats MCP Server_payment_methods

Retrieve the user's payment methods. You will rarely need to call this unless instructed by the user, or to troubleshoot payment issues. Fewsats will automatically select the best payment method.

Google Workspace MCP Server_list_emails

List recent emails from Gmail inbox

Google Workspace MCP Server_search_emails

Search emails with advanced query

Google Workspace MCP Server_send_email

Send a new email

Google Workspace MCP Server_modify_email

Modify email labels (archive, trash, mark read/unread)

Google Workspace MCP Server_list_events

List upcoming calendar events

Google Workspace MCP Server_create_event

Create a new calendar event

Google Workspace MCP Server_update_event

Update an existing calendar event

Google Workspace MCP Server_delete_event

Delete a calendar event

Oxylabs MCP Server_oxylabs_scraper

Scrape url using Oxylabs Web Api

Oxylabs MCP Server_oxylabs_web_unblocker

Scrape url using Oxylabs Web Unblocker

Vidu MCP Server_image-to-video

Generate a video from an image using Vidu API

Vidu MCP Server_check-generation-status

Check the status of a video generation task

Vidu MCP Server_upload-image

Upload an image to use with the Vidu API

SketchupMCP_create_component

Create a new component in Sketchup

SketchupMCP_delete_component

Delete a component by ID

SketchupMCP_transform_component

Transform a component's position, rotation, or scale

SketchupMCP_get_selection

Get currently selected components

SketchupMCP_set_material

Set material for a component

SketchupMCP_export_scene

Export the current scene

SketchupMCP_create_mortise_tenon

Create a mortise and tenon joint between two components

SketchupMCP_create_dovetail

Create a dovetail joint between two components

SketchupMCP_create_finger_joint

Create a finger joint (box joint) between two components

SketchupMCP_eval_ruby

Evaluate arbitrary Ruby code in Sketchup

GitHub Actions MCP Server_list_workflows

List workflows in a GitHub repository

GitHub Actions MCP Server_get_workflow

Get details of a specific workflow

GitHub Actions MCP Server_get_workflow_usage

Get usage statistics of a workflow

GitHub Actions MCP Server_list_workflow_runs

List all workflow runs for a repository or a specific workflow

GitHub Actions MCP Server_get_workflow_run

Get details of a specific workflow run

GitHub Actions MCP Server_get_workflow_run_jobs

Get jobs for a specific workflow run

GitHub Actions MCP Server_trigger_workflow

Trigger a workflow run

GitHub Actions MCP Server_cancel_workflow_run

Cancel a workflow run

GitHub Actions MCP Server_rerun_workflow

Re-run a workflow run

mcp-minecraft_move-to-position

Move the bot to a specific position

mcp-minecraft_look-at

Make the bot look at a specific position

mcp-minecraft_jump

Make the bot jump

mcp-minecraft_get-position

Get the current position of the bot

mcp-minecraft_move-in-direction

Move the bot in a specific direction for a duration

mcp-minecraft_list-inventory

List all items in the bot's inventory

mcp-minecraft_find-item

Find a specific item in the bot's inventory

mcp-minecraft_equip-item

Equip a specific item

mcp-minecraft_place-block

Place a block at the specified position

mcp-minecraft_dig-block

Dig a block at the specified position

mcp-minecraft_get-block-info

Get information about a block at the specified position

mcp-minecraft_find-block

Find the nearest block of a specific type

mcp-minecraft_find-entity

Find the nearest entity of a specific type

mcp-minecraft_send-chat

Send a chat message in-game

Bankless Onchain MCP Server_read_contract

Read contract state from a blockchain. important:

In case of a tuple, don't use type tuple, but specify the inner types (found in the source) in order. For nested structs, include the substructs types. Example: struct DataTypeA { DataTypeB b; //the liquidity index. Expressed in ray uint128 liquidityIndex; } struct DataTypeB { address token; } results in outputs for function with return type DataTypeA (tuple in abi): outputs: [{"type": "address"}, {"type": "uint128"}]
Bankless Onchain MCP Server_get_proxy

Gets the proxy address for a given network and contract

Bankless Onchain MCP Server_get_abi

Gets the ABI for a given contract on a specific network

Bankless Onchain MCP Server_get_source

Gets the source code for a given contract on a specific network

Bankless Onchain MCP Server_get_events

Fetches event logs for a given network and filter criteria

Bankless Onchain MCP Server_build_event_topic

Builds an event topic signature based on event name and arguments

Bankless Onchain MCP Server_get_transaction_history_for_user

Gets transaction history for a user and optional contract

Bankless Onchain MCP Server_get_transaction_info

Gets detailed information about a specific transaction

Bankless Onchain MCP Server_get_token_balances_on_network

Gets all token balances for a given address on a specific network

Bankless Onchain MCP Server_get_block_info

Gets detailed information about a specific block by number or hash

Map Traveler MCP_set_traveler_location

Set the traveler's current address

Map Traveler MCP_tips

Inform you of recommended actions for your device

EVM MCP Server_get_chain_info

Get information about an EVM network

EVM MCP Server_resolve_ens

Resolve an ENS name to an Ethereum address

EVM MCP Server_get_supported_networks

Get a list of supported EVM networks

EVM MCP Server_get_block_by_number

Get a block by its block number

EVM MCP Server_get_latest_block

Get the latest block from the EVM

EVM MCP Server_get_balance

Get the native token balance (ETH, MATIC, etc.) for an address

EVM MCP Server_get_erc20_balance

Get the ERC20 token balance of an Ethereum address

EVM MCP Server_get_token_balance

Get the balance of an ERC20 token for an address

EVM MCP Server_get_transaction

Get detailed information about a specific transaction by its hash. Includes sender, recipient, value, data, and more.

EVM MCP Server_get_transaction_receipt

Get a transaction receipt by its hash

EVM MCP Server_estimate_gas

Estimate the gas cost for a transaction

EVM MCP Server_get_address_from_private_key

Get the EVM address derived from a private key

EVM MCP Server_transfer_eth

Transfer native tokens (ETH, MATIC, etc.) to an address

EVM MCP Server_transfer_erc20

Transfer ERC20 tokens to another address

EVM MCP Server_approve_token_spending

Approve another address (like a DeFi protocol or exchange) to spend your ERC20 tokens. This is often required before interacting with DeFi protocols.

EVM MCP Server_transfer_nft

Transfer an NFT (ERC721 token) from one address to another. Requires the private key of the current owner for signing the transaction.

EVM MCP Server_transfer_erc1155

Transfer ERC1155 tokens to another address. ERC1155 is a multi-token standard that can represent both fungible and non-fungible tokens in a single contract.

EVM MCP Server_transfer_token

Transfer ERC20 tokens to an address

EVM MCP Server_read_contract

Read data from a smart contract by calling a view/pure function. This doesn't modify blockchain state and doesn't require gas or signing.

EVM MCP Server_write_contract

Write data to a smart contract by calling a state-changing function. This modifies blockchain state and requires gas payment and transaction signing.

EVM MCP Server_is_contract

Check if an address is a smart contract or an externally owned account (EOA)

EVM MCP Server_get_token_info

Get comprehensive information about an ERC20 token including name, symbol, decimals, total supply, and other metadata. Use this to analyze any token on EVM chains.

EVM MCP Server_get_token_balance_erc20

Get ERC20 token balance for an address

EVM MCP Server_get_nft_info

Get detailed information about a specific NFT (ERC721 token), including collection name, symbol, token URI, and current owner if available.

EVM MCP Server_check_nft_ownership

Check if an address owns a specific NFT

EVM MCP Server_get_erc1155_token_uri

Get the metadata URI for an ERC1155 token (multi-token standard used for both fungible and non-fungible tokens). The URI typically points to JSON metadata about the token.

EVM MCP Server_get_nft_balance

Get the total number of NFTs owned by an address from a specific collection. This returns the count of NFTs, not individual token IDs.

EVM MCP Server_get_erc1155_balance

Get the balance of a specific ERC1155 token ID owned by an address. ERC1155 allows multiple tokens of the same ID, so the balance can be greater than 1.

MCP Kibela_kibela_search_notes

Search Kibela notes by query

MCP Kibela_kibela_get_my_notes

Get my latest notes from Kibela

MCP Kibela_kibela_get_note_content

Get note content by note ID

MCP Kibela_kibela_get_note_from_path

Get note content by note path

MCP Kibela_kibela_update_note_content

Update note content by note id. This tool allows you to modify the content of an existing Kibela note. Before updating, it fetches the current content of the note to ensure proper version control. Note that you need the note ID (not the note path) to use this tool.

MCP Kibela_kibela_create_note

Create a new note in Kibela.

Hologres MCP Server_execute_select_sql

Execute SELECT SQL to query data from Hologres database.

Hologres MCP Server_execute_dml_sql

Execute (INSERT, UPDATE, DELETE) SQL to insert, update, and delete data in Hologres databse.

Hologres MCP Server_execute_ddl_sql

Execute (CREATE, ALTER, DROP) SQL statements to CREATE, ALTER, or DROP tables, views, procedures, GUCs etc. in Hologres databse.

Hologres MCP Server_gather_table_statistics

Execute the ANALYZE TABLE command to have Hologres collect table statistics, enabling QO to generate better query plans

Hologres MCP Server_get_query_plan

Get query plan for a SQL query

Hologres MCP Server_get_execution_plan

Get actual execution plan with runtime statistics for a SQL query

Spotify MCP Server_searchSpotify

Search for tracks, albums, artists, or playlists on Spotify

Spotify MCP Server_getNowPlaying

Get information about the currently playing track on Spotify

Spotify MCP Server_getMyPlaylists

Get a list of the current user's playlists on Spotify

Spotify MCP Server_getPlaylistTracks

Get a list of tracks in a Spotify playlist

Spotify MCP Server_playMusic

Start playing a Spotify track, album, artist, or playlist

Spotify MCP Server_pausePlayback

Pause Spotify playback on the active device

Spotify MCP Server_skipToNext

Skip to the next track in the current Spotify playback queue

Spotify MCP Server_skipToPrevious

Skip to the previous track in the current Spotify playback queue

Spotify MCP Server_createPlaylist

Create a new playlist on Spotify

Spotify MCP Server_addTracksToPlaylist

Add tracks to a Spotify playlist

Spotify MCP Server_resumePlayback

Resume Spotify playback on the active device

Spotify MCP Server_addToQueue

Adds a track, album, artist or playlist to the playback queue

MCP Server for FTP Access_list-directory

List contents of an FTP directory

MCP Server for FTP Access_download-file

Download a file from the FTP server

MCP Server for FTP Access_upload-file

Upload a file to the FTP server

MCP Server for FTP Access_create-directory

Create a new directory on the FTP server

MCP Server for FTP Access_delete-file

Delete a file from the FTP server

MCP Server for FTP Access_delete-directory

Delete a directory from the FTP server

UseGrant MCP Server_get_provider

Get a provider by ID

UseGrant MCP Server_list_providers

List all providers

UseGrant MCP Server_create_provider

Create a new provider

UseGrant MCP Server_delete_provider

Delete a provider

UseGrant MCP Server_list_clients

List all clients

UseGrant MCP Server_create_client

Create a new client for a provider

UseGrant MCP Server_get_client

Get client details by provider and client ID

UseGrant MCP Server_delete_client

Delete a client from a provider

UseGrant MCP Server_list_domains

List all domains for a provider

UseGrant MCP Server_add_domain

Add a domain to a provider

UseGrant MCP Server_get_domain

Get a domain by provider and domain ID

UseGrant MCP Server_delete_domain

Delete a domain from a provider

UseGrant MCP Server_verify_domain

Verify a domain for a provider

UseGrant MCP Server_create_access_token

Create a new access token for a client

UseGrant MCP Server_list_tenants

List all tenants

UseGrant MCP Server_create_tenant

Create a new tenant

UseGrant MCP Server_get_tenant

Get a tenant by ID

UseGrant MCP Server_delete_tenant

Delete a tenant

UseGrant MCP Server_list_tenant_providers

List all providers for a tenant

UseGrant MCP Server_create_tenant_provider

Create a new provider for a tenant

UseGrant MCP Server_get_tenant_provider

Get a provider for a tenant

UseGrant MCP Server_delete_tenant_provider

Delete a provider for a tenant

UseGrant MCP Server_list_tenant_provider_policies

List all policies for a tenant provider

UseGrant MCP Server_create_tenant_provider_policy

Create a new policy for a tenant provider

UseGrant MCP Server_get_tenant_provider_policy

Get a policy for a tenant provider

UseGrant MCP Server_delete_tenant_provider_policy

Delete a policy for a tenant provider

Backlog MCP Server_backlog_get_projects

Performs list project get using the Backlog Projects get API. Supports pagination, content filtering. Maximum 20 results per request, with offset for pagination.

Backlog MCP Server_backlog_get_project

Performs an project get using the Backlog Project get API.

Backlog MCP Server_backlog_get_issues

Performs list issue get using the Backlog Issues API. Supports pagination, content filtering. Maximum 20 results per request, with offset for pagination.

Backlog MCP Server_backlog_get_issue

Performs an issue get using the Backlog Issue API.

Backlog MCP Server_backlog_add_issue

Add an issue using the Backlog Issue API.

Backlog MCP Server_backlog_update_issue

Update an issue using the Backlog Issue API.

Backlog MCP Server_backlog_delete_issue

Delete an issue using the Backlog Issue API.

Backlog MCP Server_backlog_get_wikis

Performs list wikis get using the Backlog Wiki API

Backlog MCP Server_backlog_get_wiki

Performs an wiki get using the Backlog Wiki API.

Backlog MCP Server_backlog_add_wiki

Add an wiki using the Backlog Wiki API.

Backlog MCP Server_backlog_update_wiki

Update an wiki using the Backlog Wiki API.

Backlog MCP Server_backlog_delete_wiki

Delete an wiki using the Backlog Wiki API.

WhatsApp MCP Server_open_session

Open a new WhatsApp session.

WhatsApp MCP Server_send_message
Send a message to a chat. Parameters: - phone_number: The phone number of the recipient - content: The content of the message to send - reply_to: ID of the message to reply to (optional)
WhatsApp MCP Server_get_chats
Get a list of chats. Parameters: - limit: Maximum number of chats to return (default: 50) - offset: Offset for pagination (default: 0)
WhatsApp MCP Server_create_group
Create a new WhatsApp group. Parameters: - group_name: Name of the group to create - participants: List of participant phone numbers
WhatsApp MCP Server_get_group_participants
Get the participants of a WhatsApp group. Parameters: - group_id: The WhatsApp ID of the group
MCP Ripgrep Server_search

Search files for patterns using ripgrep (rg)

MCP Ripgrep Server_advanced-search

Advanced search with ripgrep with more options

MCP Ripgrep Server_count-matches

Count matches in files using ripgrep

MCP Ripgrep Server_list-files

List files that would be searched by ripgrep without actually searching them

MCP Ripgrep Server_list-file-types

List all supported file types in ripgrep

Cursor Talk To Figma MCP_set_text_content

Set the text content of an existing text node in Figma

Cursor Talk To Figma MCP_get_document_info

Get detailed information about the current Figma document

Cursor Talk To Figma MCP_get_selection

Get information about the current selection in Figma

Cursor Talk To Figma MCP_get_node_info

Get detailed information about a specific node in Figma

Cursor Talk To Figma MCP_create_rectangle

Create a new rectangle in Figma

Cursor Talk To Figma MCP_join_channel

Join a specific channel to communicate with Figma

Cursor Talk To Figma MCP_create_frame

Create a new frame in Figma

Cursor Talk To Figma MCP_create_text

Create a new text element in Figma

Cursor Talk To Figma MCP_set_fill_color

Set the fill color of a node in Figma can be TextNode or FrameNode

Cursor Talk To Figma MCP_set_stroke_color

Set the stroke color of a node in Figma

Cursor Talk To Figma MCP_move_node

Move a node to a new position in Figma

Cursor Talk To Figma MCP_clone_node

Clone an existing node in Figma

Cursor Talk To Figma MCP_resize_node

Resize a node in Figma

Cursor Talk To Figma MCP_delete_node

Delete a node from Figma

Cursor Talk To Figma MCP_get_styles

Get all styles from the current Figma document

Cursor Talk To Figma MCP_get_local_components

Get all local components from the Figma document

Cursor Talk To Figma MCP_create_component_instance

Create an instance of a component in Figma

Cursor Talk To Figma MCP_export_node_as_image

Export a node as an image from Figma

Cursor Talk To Figma MCP_set_corner_radius

Set the corner radius of a node in Figma

Sensei MCP_dojo_config

Essential guidance for configuring Dojo projects. Use this when setting up Scarb.toml, creating dojo profile files, configuring permissions, setting up namespaces, or managing external contracts and dependencies.

Sensei MCP_dojo_101

Beginner-friendly introduction to Dojo development. Use this when starting a new Dojo project, understanding the basic workflow, or when you need a high-level overview of the Dojo development process and architecture.

Sensei MCP_dojo_logic

Expert guidance on implementing Dojo systems and game logic. Use this when writing contract functions, implementing game mechanics, handling state changes, or working with the World contract to read/write models.

Sensei MCP_dojo_model

Specialized guidance for creating and working with Dojo models. Use this when you need to define data structures, create model schemas, implement model traits, or understand model relationships and constraints.

Sensei MCP_dojo_sensei

The main system prompt for Dojo development. Use this as the primary prompt when starting a conversation about Dojo or Cairo development, or when you need comprehensive guidance across all aspects of Dojo development.

Sensei MCP_dojo_test

Comprehensive guide for writing tests for Dojo applications. Use this when creating unit tests, integration tests, setting up test environments, or verifying the correctness of your Dojo systems and models.

Sensei MCP_dojo_token

Detailed guidance on implementing token standards in Dojo. Use this when creating ERC20, ERC721, or ERC1155 tokens, implementing token functionality, or integrating tokens with your Dojo game.

MCP Server Box_box_who_am_i

Get the current user's information. This is also useful to check the connection status.

return: str: The current user's information.

MCP Server Box_box_authorize_app_tool

Authorize the Box application. Start the Box app authorization process

return: str: Message

MCP Server Box_box_search_tool

Search for files in Box with the given query.

Args: query (str): The query to search for. file_extensions (List[str]): The file extensions to search for, for example *.pdf content_types (List[SearchForContentContentTypes]): where to look for the information, possible values are: NAME DESCRIPTION, FILE_CONTENT, COMMENTS, TAG, ancestor_folder_ids (List[str]): The ancestor folder IDs to search in. return: str: The search results.

MCP Server Box_box_read_tool

Read the text content of a file in Box.

Args: file_id (str): The ID of the file to read. return: str: The text content of the file.

MCP Server Box_box_ask_ai_tool

Ask box ai about a file in Box.

Args: file_id (str): The ID of the file to read. prompt (str): The prompt to ask the AI. return: str: The text content of the file.

MCP Server Box_box_search_folder_by_name

Locate a folder in Box by its name.

Args: folder_name (str): The name of the folder to locate. return: str: The folder ID.

MCP Server Box_box_ai_extract_data

" Extract data from a file in Box using AI.

Args: file_id (str): The ID of the file to read. fields (str): The fields to extract from the file. return: str: The extracted data in a json string format.

MCP Server Box_box_list_folder_content_by_folder_id

List the content of a folder in Box by its ID.

Args: folder_id (str): The ID of the folder to list the content of. is_recursive (bool): Whether to list the content recursively.

return: str: The content of the folder in a json string format, including the "id", "name", "type", and "description".

anilist-mcp_favourite_studio

[Requires Login] Favourite or unfavourite a studio by its ID

anilist-mcp_get_genres

Get all available genres on AniList

anilist-mcp_get_media_tags

Get all available media tags on AniList

anilist-mcp_get_site_statistics

Get AniList site statistics over the last seven days

anilist-mcp_get_studio

Get information about a studio by its AniList ID or name

anilist-mcp_delete_activity

[Requires Login] Delete the current authorized user's activity post

anilist-mcp_get_activity

Get a specific AniList activity by its ID

anilist-mcp_get_user_activity

Fetch activities from a user

anilist-mcp_post_message_activity

[Requires Login] Post a new message activity or update an existing one

anilist-mcp_post_text_activity

[Requires Login] Post a new text activity or update an existing one

anilist-mcp_add_list_entry

[Requires Login] Add an entry to the authorized user's list

anilist-mcp_get_user_anime_list

Get a user's anime list

anilist-mcp_get_user_manga_list

Get a user's manga list

anilist-mcp_remove_list_entry

[Requires Login] Remove an entry from the authorized user's list

anilist-mcp_search_studio

Search for studios based on a query term

anilist-mcp_update_list_entry

[Requires Login] Update an entry on the authorized user's list

anilist-mcp_get_anime

Get detailed information about an anime by its AniList ID

anilist-mcp_favourite_anime

[Requires Login] Favourite or unfavourite an anime by its ID

anilist-mcp_favourite_manga

[Requires Login] Favourite or unfavourite a manga by its ID

anilist-mcp_get_manga

Get detailed information about a manga by its AniList ID

anilist-mcp_get_character

Get information about a character by their AniList ID

anilist-mcp_favourite_character

[Requires Login] Favourite or unfavourite a character by its ID

anilist-mcp_favourite_staff

[Requires Login] Favourite or unfavourite a staff member by their ID

anilist-mcp_get_todays_birthday_characters

Get all characters whose birthday is today

anilist-mcp_get_todays_birthday_staff

Get all staff members whose birthday is today

anilist-mcp_get_staff

Get information about staff member by their AniList ID or name

anilist-mcp_get_recommendation

Get an AniList recommendation by its ID

anilist-mcp_get_recommendations_for_media

Get AniList recommendations for a specific media

anilist-mcp_search_activity

Search for activities on AniList

anilist-mcp_search_anime

Search for anime with query term and filters

anilist-mcp_search_character

Search for characters based on a query term

anilist-mcp_search_manga

Search for manga with query term and filters

anilist-mcp_search_staff

Search for staff members based on a query term

anilist-mcp_search_user

Search for users on AniList

anilist-mcp_delete_thread

[Requires Login] Delete a thread by its ID

anilist-mcp_get_thread

Get a specific thread by its AniList ID

anilist-mcp_get_thread_comments

Get comments for a specific thread

anilist-mcp_get_full_user_info

Get a user's complete profile and stats information

anilist-mcp_follow_user

[Requires Login] Follow or unfollow a user by their ID

anilist-mcp_get_authorized_user

[Requires Login] Get profile information of the currently authorized user

anilist-mcp_get_user_recent_activity

Get recent activity from a user

anilist-mcp_get_user_profile

Get a user's AniList profile

anilist-mcp_get_user_stats

Get a user's AniList statistics

anilist-mcp_update_user

[Requires Login] Update user settings

agentek-eth_resolveENS

Resolves an ENS name to an Ethereum address

agentek-eth_lookupENS

Looks up the ENS name for an Ethereum address

agentek-eth_getAllowance

Gets the ERC20 token allowance between an owner and spender

agentek-eth_getBalanceOf

Gets the ERC20 token balance of an address

agentek-eth_getTotalSupply

Gets the total supply of an ERC20 token

agentek-eth_getDecimals

Gets the number of decimals of an ERC20 token

agentek-eth_getName

Gets the name of an ERC20 token

agentek-eth_getSymbol

Gets the symbol of an ERC20 token

agentek-eth_getTokenMetadata

Gets all metadata (name, symbol, decimals, totalSupply) of an ERC20 token

agentek-eth_intentApprove

Creates an intent to approve token spending

agentek-eth_getAcrossFeeQuote

Fetches a suggested fee quote for a cross-chain asset bridge using the Across Protocol REST API.

agentek-eth_intentDepositAcross

Deposits tokens into the Across Protocol bridge to initiate a cross-chain transfer.

agentek-eth_intentTransfer

Creates an intent to transfer tokens

agentek-eth_intentTransferFrom

Creates an intent to transfer tokens from another address

agentek-eth_getLatestTokens

Get trending tokens and market data

agentek-eth_getBalance

Get the ETH balance for an address

agentek-eth_getCode

Get the bytecode of an address

agentek-eth_getTransactionCount

Get the number of transactions sent from an address

agentek-eth_getBlock

Get information about a block

agentek-eth_getBlockNumber

Get the current block number

agentek-eth_getGasPrice

Get the current gas price. If chainId is not specified, will return gas price for all supported chains.

agentek-eth_estimateGas

Estimate gas for a transaction

agentek-eth_getFeeHistory

Get historical gas fee info

agentek-eth_getTransaction

Get details about a transaction

agentek-eth_getTransactionReceipt

Get the receipt of a transaction

agentek-eth_getUniV3Pool

Gets information about a Uniswap V3 pool

agentek-eth_getUserPositions

Gets all Uniswap V3 positions for a user

agentek-eth_getPoolFeeData

Gets fee-related data for a pool

agentek-eth_getPositionDetails

Gets detailed information about a specific LP position

agentek-eth_intentMintPosition

Creates a new Uniswap V3 liquidity position

agentek-eth_intentIncreaseLiquidity

Adds more liquidity to an existing Uniswap V3 position

agentek-eth_intentDecreaseLiquidity

Removes liquidity from a Uniswap V3 position

agentek-eth_intentCollectFees

Collects accumulated fees from a Uniswap V3 position

agentek-eth_intentTransferPosition

Transfers ownership of a Uniswap V3 LP NFT

agentek-eth_depositWETH

Deposit ETH into the WETH contract, receiving WETH in return

agentek-eth_withdrawWETH

Withdraw WETH back to native ETH

agentek-eth_getNaniProposals

Get proposals for NANIDAO

agentek-eth_intentStakeNani

Stake NANI tokens to receive xNANI tokens, which can be used for governance

agentek-eth_intentUnstakeNani

Unstake xNANI tokens back to NANI tokens

agentek-eth_intentProposeNani

Create a new governance proposal for NANIDAO

agentek-eth_intentVoteNaniProposal

Vote on an existing NANIDAO governance proposal

agentek-eth_getNativeCoinHolders

Get native coin holders list

agentek-eth_getAddressInfo

Get information about a specific address

agentek-eth_getAddressCounters

Get counters for a specific address

agentek-eth_getAddressTransactions

Get transactions for a specific address

agentek-eth_getAddressTokenTransfers

Get token transfers for a specific address

agentek-eth_getAddressInternalTransactions

Get internal transactions for a specific address

agentek-eth_getAddressLogs

Get logs for a specific address

agentek-eth_getAddressBlocksValidated

Get blocks validated by a specific address

agentek-eth_getAddressTokenBalances

Get all token balances for a specific address

agentek-eth_getAddressTokens

Get token balances with filtering and pagination

agentek-eth_getAddressCoinBalanceHistory

Get address coin balance history

agentek-eth_getAddressCoinBalanceHistoryByDay

Get address coin balance history by day

agentek-eth_getAddressWithdrawals

Get withdrawals for a specific address

agentek-eth_getAddressNFTs

Get list of NFTs owned by address

agentek-eth_getAddressNFTCollections

Get list of NFTs owned by address, grouped by collection

agentek-eth_getBlockInfo

Get information about a specific block

agentek-eth_getBlockTransactions

Get transactions within a specific block

agentek-eth_getBlockWithdrawals

Get withdrawals within a specific block

agentek-eth_getStats

Get statistics for various blockchain metrics.

agentek-eth_getTransactionsChart

Retrieve daily transaction statistics chart data.

agentek-eth_getTransactionInfo

Retrieve detailed information for a given transaction hash.

agentek-eth_getTransactionTokenTransfers

Retrieve all token transfers that occurred within a given transaction.

agentek-eth_getTransactionInternalTransactions

Retrieve internal transactions that occurred within a given transaction.

agentek-eth_tallyUserDaos

Fetch all DAOs a user is a member of from the Tally governance API.

agentek-eth_getTransactionLogs

Retrieve logs that were generated from a specific transaction.

agentek-eth_getTransactionRawTrace

Retrieve raw trace information for a specific transaction.

agentek-eth_getTransactionStateChanges

Retrieve state changes that occurred during a transaction.

agentek-eth_getTransactionSummary

Retrieve a summary of data related to a transaction.

agentek-eth_getSmartContracts

Get smart contract for the query

agentek-eth_getSmartContract

Retrieve the source code, ABI and metadata a contract.

agentek-eth_getTokenInfo

Fetch metadata for a token contract.

agentek-eth_getTokenHolders

Retrieve token holders and their balances for a given token.

agentek-eth_getTokenTransfers

List transfers for a specific token contract with pagination support.

agentek-eth_getBlockscoutSearch

Perform a search query to find blocks, transactions, addresses, or tokens on the blockchain.

agentek-eth_getAaveUserData

Fetches Aave user data including total collateral, total debt, available borrowing power, current liquidation threshold, LTV, and health factor.

agentek-eth_getAaveReserveData

Fetches reserve data for a given asset from Aave including available liquidity, total stable and variable debt, and interest rates.

agentek-eth_intentAaveDeposit

Deposits tokens into the Aave protocol to supply liquidity and earn interest.

agentek-eth_intentAaveWithdraw

Withdraws tokens from Aave, redeeming your supplied assets (aTokens).

agentek-eth_intentAaveBorrow

Borrows tokens from Aave using your supplied collateral. By default, the variable rate mode (2) is used.

agentek-eth_intentAaveRepay

Repays your Aave debt. By default, the variable rate mode (2) is used for repayment.

agentek-eth_checkMaliciousAddress

Check if an Ethereum address has been associated with malicious activity

agentek-eth_checkMaliciousWebsite

Check if a website has been associated with crypto scams or malicious activity

agentek-eth_scrapeWebContent

Given a URL, fetch the page's HTML and return the main text content as accurately as possible. Works for most websites.

agentek-eth_getFearAndGreedIndex

Retrieves the current Fear and Greed Index value from Alternative.me API.

agentek-eth_getSlowStatus

Get information about tokens, unlocked balances, and pending transfers in SLOW

agentek-eth_predictTransferId

Predict a transfer ID for a potential transfer

agentek-eth_canUnlockSlow

Check if a transfer can be unlocked and get info about it

agentek-eth_getCanReverseSlowTransfer

Check if a transfer can be reversed

agentek-eth_getSlowGuardianInfo

Get guardian information for a user

agentek-eth_getSlowTransferApprovalRequired

Check if a transfer needs guardian approval

agentek-eth_intentDepositToSlow

Deposit tokens or ETH into SLOW contract with a timelock

agentek-eth_intentSetSlowGuardian

Set a guardian for a user in the SLOW contract

agentek-eth_intentWithdrawFromSlow

Withdraw unlocked tokens from SLOW contract

agentek-eth_intentApproveSlowTransfer

Guardian approves a transfer in SLOW contract

agentek-eth_intentUnlockSlow

Unlock a time-locked transfer in SLOW contract

agentek-eth_intentReverseSlowTransfer

Reverse a pending transfer in SLOW contract

agentek-eth_getNFTMetadata

Gets metadata for an NFT token by contract address and token ID

agentek-eth_getCryptoPrice

Get the current price of a cryptocurrency in USD

agentek-eth_estimateGasCost

Estimate the gas cost for a transaction in both native token and USD

agentek-eth_getTokenChart

Gets historical price chart data for one or more tokens from DeFi Llama

agentek-eth_getYieldTool

Analyzes and compares yield opportunities from DefiLlama across all DeFi protocols

agentek-eth_compareYieldTool

Compares yield opportunities for specific assets across different protocols

agentek-eth_getYieldHistoryTool

Fetches and analyzes historical yield data for a specific pool from DefiLlama

agentek-eth_compareYieldHistoryTool

Compares historical yield performance across multiple pools, analyzing metrics like APY, volatility, and TVL trends

agentek-eth_think

Use the tool to think about something. It will not obtain new information or change the database, but just append the thought to the log. Use it when complex reasoning or some cache memory is needed.

agentek-eth_askPerplexitySearch

Ask perplexity search

agentek-eth_tallyProposals

Fetch proposals from the Tally governance API for a specified DAO/space.

agentek-eth_tallyChains

Fetch all chains supported by the Tally governance API.

agentek-eth_intentGovernorVote

Creates an intent to vote on a Governor bravo proposal

agentek-eth_intentGovernorVoteWithReason

Creates an intent to vote on a Governor bravo proposal with a reason

agentek-eth_getLatestCoindeskNewsTool

Calls the Coindesk API to retrieve the latest news articles. Parameter 'limit' allows specification of how many articles to fetch (defaults to 10).

agentek-eth_getMarketEvents

Fetches cryptocurrency market events from CoinMarketCal. Supports filtering by coins, categories, date ranges, and various sorting options.

mcp-turso-cloud_list_databases

List all databases in your Turso organization

mcp-turso-cloud_create_database

Create a new database in your Turso organization

mcp-turso-cloud_delete_database

Delete a database from your Turso organization

mcp-turso-cloud_generate_database_token

Generate a new token for a specific database

mcp-turso-cloud_list_tables

Lists all tables in a database

mcp-turso-cloud_execute_query

Executes a SQL query against a database

mcp-turso-cloud_describe_table

Gets schema information for a table

mcp-turso-cloud_vector_search

Performs vector similarity search

Mindmap MCP Server_convert_markdown_to_mindmap

Convert Markdown content to a mindmap mind map.

Args: markdown_content: The Markdown content to convert Returns: Either the HTML content or the file path to the generated HTML, depending on the --return-type server argument
Pica MCP Server_list_connections

List all available active connections in the user's Pica account

Pica MCP Server_get_available_actions

Get available actions for a specific platform

Pica MCP Server_get_action_knowledge

Get detailed information about a specific action

Pica MCP Server_execute_action

Prepare to execute a specific action (requires confirmation)

notion-mcp-server_create_page

Create a new page in Notion

notion-mcp-server_archive_page

Archive (trash) a Notion page

notion-mcp-server_restore_page

Restore a previously archived Notion page

notion-mcp-server_search_pages

Search for pages and databases in Notion by title

notion-mcp-server_append_block_children

Append child blocks to a parent block in Notion

notion-mcp-server_retrieve_block

Retrieve a block from Notion by ID

notion-mcp-server_retrieve_block_children

Retrieve the children of a block from Notion

notion-mcp-server_update_block

Update a block's content in Notion

notion-mcp-server_delete_block

Delete (move to trash) a block in Notion

notion-mcp-server_batch_append_block_children

Append children to multiple blocks in a single operation

notion-mcp-server_batch_update_blocks

Update multiple blocks in a single operation

notion-mcp-server_batch_delete_blocks

Delete multiple blocks in a single operation

notion-mcp-server_batch_mixed_operations

Perform a mix of append, update, and delete operations in a single request

mcp-server-code-runner_run-code

Run code snippet and return the result.

mcp-octagon_octagon-sec-agent

[PUBLIC MARKET INTELLIGENCE] A specialized agent for SEC filings analysis and financial data extraction. Covers over 8,000 public companies from SEC EDGAR with comprehensive coverage of financial statements from annual and quarterly reports (10-K, 10-Q, 20-F), offering filings (S-1), amendments, and event filings (8-K). Updated daily with historical data dating back to 2018 for time-series analysis. Best for extracting financial and segment metrics, management discussion, footnotes, risk factors, and quantitative data from SEC filings. Example queries: 'What was Apple's R&D expense as a percentage of revenue in their latest fiscal year?', 'Find the risk factors related to supply chain in Tesla's latest 10-K', 'Extract quarterly revenue growth rates for Microsoft over the past 2 years'.

mcp-octagon_octagon-transcripts-agent

[PUBLIC MARKET INTELLIGENCE] A specialized agent for analyzing earnings call transcripts and management commentary. Covers over 8,000 public companies with continuous daily updates for real-time insights. Historical data dating back to 2018 enables robust time-series analysis. Extract information from earnings call transcripts, including executive statements, financial guidance, analyst questions, and forward-looking statements. Best for analyzing management sentiment, extracting guidance figures, and identifying key business trends. Example queries: 'What did Amazon's CEO say about AWS growth expectations in the latest earnings call?', 'Summarize key financial metrics mentioned in Tesla's Q2 2023 earnings call', 'What questions did analysts ask about margins during Netflix's latest earnings call?'.

mcp-octagon_octagon-financials-agent

[PUBLIC MARKET INTELLIGENCE] Specialized agent for financial statement analysis and ratio calculations. Capabilities: Analyze financial statements, calculate financial metrics, compare ratios, and evaluate performance indicators. Best for: Deep financial analysis and comparison of company financial performance. Example queries: 'Compare the gross margins, operating margins, and net margins of Apple, Microsoft, and Google over the last 3 years', 'Analyze Tesla's cash flow statements from 2021 to 2023 and calculate free cash flow trends', 'Calculate and explain key financial ratios for Amazon including P/E, EV/EBITDA, and ROIC'.

mcp-octagon_octagon-stock-data-agent

[PUBLIC MARKET INTELLIGENCE] Specialized agent for stock market data and equity investment analysis. Capabilities: Analyze stock price movements, trading volumes, market trends, valuation metrics, and technical indicators. Best for: Stock market research, equity analysis, and trading pattern identification. Example queries: 'How has Apple's stock performed compared to the S&P 500 over the last 6 months?', 'Analyze the trading volume patterns for Tesla stock before and after earnings releases', 'What were the major price movements for NVIDIA in 2023 and what were the catalysts?'.

mcp-octagon_octagon-companies-agent

[PRIVATE MARKET INTELLIGENCE] A specialized database agent for looking up company information and financials. Capabilities: Query comprehensive company financial information and business intelligence from Octagon's company database. Best for: Finding basic information about companies, their financial metrics, and industry benchmarks. NOTE: For better and more accurate results, provide the company's website URL instead of just the company name. Example queries: 'What is the employee trends for Stripe (stripe.com)?', 'List the top 5 companies in the AI sector by revenue growth', 'Who are the top competitors to Databricks (databricks.com)?'.

mcp-octagon_octagon-funding-agent

[PRIVATE MARKET INTELLIGENCE] A specialized database agent for company funding transactions and venture capital research. Capabilities: Extract information about funding rounds, investors, valuations, and investment trends. Best for: Researching startup funding history, investor activity, and venture capital patterns. NOTE: For better and more accurate results, provide the company's website URL instead of just the company name. Example queries: 'What was Anthropic's latest funding round size, valuation, and key investors (anthropic.com)?', 'How much has OpenAI raised in total funding and at what valuation (openai.com)?', 'Who were the lead investors in Databricks' Series G round and what was the post-money valuation (databricks.com)?'.

mcp-octagon_octagon-deals-agent

[PRIVATE MARKET INTELLIGENCE] A specialized database agent for M&A and IPO transaction analysis. Capabilities: Retrieve information about mergers, acquisitions, initial public offerings, and other financial transactions. Best for: Research on corporate transactions, IPO valuations, and M&A activity. NOTE: For better and more accurate results, provide the company's website URL instead of just the company name. Example queries: 'What was the acquisition price when Microsoft (microsoft.com) acquired GitHub (github.com)?', 'List the valuation multiples for AI companies in 2024', 'List all the acquisitions and price, valuation by Salesforce (salesforce.com) in 2023?'.

mcp-octagon_octagon-investors-agent

[PRIVATE MARKET INTELLIGENCE] A specialized database agent for looking up information on investors. Capabilities: Retrieve information about investors, their investment criteria, and past activities. Best for: Research on investors and details about their investment activities. NOTE: For better and more accurate results, provide the investor's website URL instead of just the investor name. Example queries: 'What is the latest investment criteria of Insight Partners (insightpartners.com)?', 'How many investments did Andreessen Horowitz (a16z.com) make in the last 6 months', 'What is the typical check size for QED Investors (qedinvestors.com)'.

mcp-octagon_octagon-scraper-agent

[PUBLIC & PRIVATE MARKET INTELLIGENCE] Specialized agent for financial data extraction from investor websites. Capabilities: Extract structured financial data from investor relations websites, tables, and online financial sources. Best for: Gathering financial data from websites that don't have accessible APIs. Example queries: 'Extract all data fields from zillow.com/san-francisco-ca/', 'Extract all data fields from www.carvana.com/cars/'.

mcp-octagon_octagon-deep-research-agent

[PUBLIC & PRIVATE MARKET INTELLIGENCE] A comprehensive agent that can utilize multiple sources for deep research analysis. Capabilities: Aggregate research across multiple data sources, synthesize information, and provide comprehensive investment research. Best for: Investment research questions requiring up-to-date aggregated information from the web. Example queries: 'Research the financial impact of Apple's privacy changes on digital advertising companies' revenue and margins', 'Analyze the competitive landscape in the cloud computing sector, focusing on AWS, Azure, and Google Cloud margin and growth trends', 'Investigate the factors driving electric vehicle adoption and their impact on battery supplier financials'.

mcp-octagon_octagon-debts-agent

[PRIVATE MARKET INTELLIGENCE] A specialized database agent for analyzing private debts and lenders. Capabilities: Retrieve information about private debts and lenders. Best for: Research on borrowers, and lenders and details about the private debt facilities. Example queries: 'List all the debt activities from borrower American Tower', 'Compile all the debt activities from lender ING Group in Q4 2024'.

Scrapybara MCP_start_instance

Start a Scrapybara Ubuntu instance. Use it as a desktop sandbox to access the web or run code. Always present the stream URL to the user afterwards so they can watch the instance in real time.

Scrapybara MCP_get_instances

Get all running Scrapybara instances.

Scrapybara MCP_stop_instance

Stop a running Scrapybara instance.

Scrapybara MCP_bash

Run a bash command in a Scrapybara instance.

Scrapybara MCP_act

Take action on a Scrapybara instance through an agent. The agent can control the instance with mouse/keyboard and bash commands.

Flutter Inspector MCP Server_get_active_ports

Utility: Get list of ports where Flutter/Dart processes are listening. This is a local utility, not a Flutter RPC method.

Flutter Inspector MCP Server_get_supported_protocols

Utility: Get supported protocols from a Flutter app. This is a VM service method, not a Flutter RPC. Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_get_vm_info

Utility: Get VM information from a Flutter app. This is a VM service method, not a Flutter RPC. Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_get_extension_rpcs

Utility: List all available extension RPCs in the Flutter app. This is a helper tool for discovering available methods.

Flutter Inspector MCP Server_debug_disable_opacity_layers

RPC: Toggle opacity layers debugging (ext.flutter.debugDisableOpacityLayers). Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_debug_dump_render_tree

RPC: Dump the render tree (ext.flutter.debugDumpRenderTree). Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_debug_dump_layer_tree

RPC: Dump the layer tree (ext.flutter.debugDumpLayerTree). Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_debug_dump_semantics_tree

RPC: Dump the semantics tree (ext.flutter.debugDumpSemanticsTreeInTraversalOrder). Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_debug_dump_semantics_tree_inverse

RPC: Dump the semantics tree in inverse hit test order (ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder)

Flutter Inspector MCP Server_debug_paint_baselines_enabled

RPC: Toggle baseline paint debugging (ext.flutter.debugPaintBaselinesEnabled). Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_debug_dump_focus_tree

RPC: Dump the focus tree (ext.flutter.debugDumpFocusTree)

Flutter Inspector MCP Server_debug_disable_physical_shape_layers

RPC: Toggle physical shape layers debugging (ext.flutter.debugDisablePhysicalShapeLayers)

Flutter Inspector MCP Server_inspector_screenshot

RPC: Take a screenshot of the Flutter app (ext.flutter.inspector.screenshot). Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_inspector_get_layout_explorer_node

RPC: Get layout explorer information for a widget (ext.flutter.inspector.getLayoutExplorerNode). Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_inspector_track_rebuild_dirty_widgets

RPC: Track widget rebuilds to identify performance issues (ext.flutter.inspector.trackRebuildDirtyWidgets). Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_inspector_set_selection_by_id

RPC: Set the selected widget by ID (ext.flutter.inspector.setSelectionById). Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_inspector_get_parent_chain

RPC: Get the parent chain for a widget (ext.flutter.inspector.getParentChain). Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_inspector_get_children_summary_tree

RPC: Get the children summary tree for a widget (ext.flutter.inspector.getChildrenSummaryTree). Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_inspector_get_children_details_subtree

RPC: Get the children details subtree for a widget (ext.flutter.inspector.getChildrenDetailsSubtree)

Flutter Inspector MCP Server_inspector_get_root_widget_summary_tree

RPC: Get the root widget summary tree (ext.flutter.inspector.getRootWidgetSummaryTree)

Flutter Inspector MCP Server_inspector_get_root_widget_summary_tree_with_previews

RPC: Get the root widget summary tree with previews from the Flutter app. This provides a hierarchical view of the widget tree with preview information.

Flutter Inspector MCP Server_inspector_get_details_subtree

RPC: Get the details subtree for a widget. This provides detailed information about the widget and its descendants. Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_inspector_get_selected_widget

RPC: Get information about the currently selected widget in the Flutter app. Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_inspector_get_selected_summary_widget

RPC: Get summary information about the currently selected widget in the Flutter app. Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_inspector_is_widget_creation_tracked

RPC: Check if widget creation tracking is enabled in the Flutter app.

Flutter Inspector MCP Server_dart_io_socket_profiling_enabled

RPC: Enable or disable socket profiling. Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_dart_io_http_enable_timeline_logging

RPC: Enable or disable HTTP timeline logging. Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_dart_io_get_version

RPC: Get Flutter version information (ext.dart.io.getVersion)

Flutter Inspector MCP Server_dart_io_get_open_files

RPC: Get list of currently open files in the Flutter app

Flutter Inspector MCP Server_dart_io_get_open_file_by_id

RPC: Get details of a specific open file by its ID

Flutter Inspector MCP Server_stream_listen

RPC: Subscribe to a Flutter event stream. This is a VM service method for event monitoring. Connects to the default Flutter debug port (8181) unless specified otherwise.

Flutter Inspector MCP Server_dart_io_get_http_profile_request

RPC: Get details of a specific HTTP request from the profile

Flutter Inspector MCP Server_flutter_core_invert_oversized_images

RPC: Toggle inverting of oversized images for debugging

Flutter Inspector MCP Server_debug_allow_banner

RPC: Toggle the debug banner in the Flutter app

Flutter Inspector MCP Server_flutter_core_did_send_first_frame_event

RPC: Check if the first frame event has been sent

Flutter Inspector MCP Server_flutter_core_did_send_first_frame_rasterized_event

RPC: Check if the first frame has been rasterized

Flutter Inspector MCP Server_flutter_core_platform_override

RPC: Override the platform for the Flutter app

Flutter Inspector MCP Server_flutter_core_brightness_override

RPC: Override the brightness for the Flutter app

Flutter Inspector MCP Server_flutter_core_time_dilation

RPC: Set the time dilation factor for animations in the Flutter app

Flutter Inspector MCP Server_flutter_core_evict

RPC: Evict an asset from the Flutter app's cache

Flutter Inspector MCP Server_flutter_core_profile_platform_channels

RPC: Enable or disable profiling of platform channels

Flutter Inspector MCP Server_debug_disable_clip_layers

RPC: Toggle disabling of clip layers in the Flutter app

HackMD MCP Server_list_team_notes

List all notes in a team

HackMD MCP Server_get_user_info

Get information about the authenticated user

HackMD MCP Server_list_user_notes

List all notes owned by the user

HackMD MCP Server_get_note

Get a note by its ID

HackMD MCP Server_create_note

Create a new note

HackMD MCP Server_update_note

Update an existing note

HackMD MCP Server_delete_note

Delete a note

HackMD MCP Server_get_history

Get user's reading history

HackMD MCP Server_list_teams

List all teams accessible to the user

HackMD MCP Server_create_team_note

Create a new note in a team

HackMD MCP Server_update_team_note

Update an existing note in a team

HackMD MCP Server_delete_team_note

Delete a note in a team

Talk to Figma MCP_clone_node

Clone an existing node in Figma

Talk to Figma MCP_get_document_info

Get detailed information about the current Figma document

Talk to Figma MCP_get_selection

Get information about the current selection in Figma

Talk to Figma MCP_get_node_info

Get detailed information about a specific node in Figma

Talk to Figma MCP_create_rectangle

Create a new rectangle in Figma

Talk to Figma MCP_create_frame

Create a new frame in Figma

Talk to Figma MCP_create_text

Create a new text element in Figma

Talk to Figma MCP_set_fill_color

Set the fill color of a node in Figma can be TextNode or FrameNode

Talk to Figma MCP_set_stroke_color

Set the stroke color of a node in Figma

Talk to Figma MCP_move_node

Move a node to a new position in Figma

Talk to Figma MCP_resize_node

Resize a node in Figma

Talk to Figma MCP_delete_node

Delete a node from Figma

Talk to Figma MCP_get_styles

Get all styles from the current Figma document

Talk to Figma MCP_get_local_components

Get all local components from the Figma document

Talk to Figma MCP_create_component_instance

Create an instance of a component in Figma

Talk to Figma MCP_export_node_as_image

Export a node as an image from Figma

Talk to Figma MCP_set_corner_radius

Set the corner radius of a node in Figma

Talk to Figma MCP_set_text_content

Set the text content of an existing text node in Figma

Talk to Figma MCP_join_channel

Join a specific channel to communicate with Figma

gitlab-mcp-server_get_project_wiki_page

Get a specific wiki page for a GitLab project

gitlab-mcp-server_get_group_wiki_page

Get a specific wiki page for a GitLab group

gitlab-mcp-server_create_project_wiki_page

Create a new wiki page for a GitLab project

gitlab-mcp-server_create_group_wiki_page

Create a new wiki page for a GitLab group

gitlab-mcp-server_edit_group_wiki_page

Edit an existing wiki page for a GitLab group

gitlab-mcp-server_delete_group_wiki_page

Delete a wiki page from a GitLab group

gitlab-mcp-server_upload_group_wiki_attachment

Upload an attachment to a GitLab group wiki

gitlab-mcp-server_list_project_members

List all members of a GitLab project (including inherited members)

gitlab-mcp-server_list_group_members

List all members of a GitLab group (including inherited members)

gitlab-mcp-server_upload_project_wiki_attachment

Upload an attachment to a GitLab project wiki

gitlab-mcp-server_list_group_wiki_pages

List all wiki pages for a GitLab group

gitlab-mcp-server_create_or_update_file

Create or update a single file in a GitLab project

gitlab-mcp-server_search_repositories

Search for GitLab projects

gitlab-mcp-server_create_repository

Create a new GitLab project

gitlab-mcp-server_get_file_contents

Get the contents of a file or directory from a GitLab project

gitlab-mcp-server_push_files

Push multiple files to a GitLab project in a single commit

gitlab-mcp-server_create_issue

Create a new issue in a GitLab project

gitlab-mcp-server_create_merge_request

Create a new merge request in a GitLab project

gitlab-mcp-server_fork_repository

Fork a GitLab project to your account or specified namespace

gitlab-mcp-server_create_branch

Create a new branch in a GitLab project

gitlab-mcp-server_list_group_projects

List all projects (repositories) within a specific GitLab group

gitlab-mcp-server_get_project_events

Get recent events/activities for a GitLab project

gitlab-mcp-server_list_commits

Get commit history for a GitLab project

gitlab-mcp-server_list_issues

Get issues for a GitLab project

gitlab-mcp-server_list_merge_requests

Get merge requests for a GitLab project

gitlab-mcp-server_list_project_wiki_pages

List all wiki pages for a GitLab project

gitlab-mcp-server_edit_project_wiki_page

Edit an existing wiki page for a GitLab project

gitlab-mcp-server_delete_project_wiki_page

Delete a wiki page from a GitLab project

BSC MCP Server_securityCheck

Check security of BSC tokens

BSC MCP Server_transferNativeToken

Transfer native token (BNB)

BSC MCP Server_transferBEP20Token

Transfer BEP-20 token by symbol or address

BSC MCP Server_pancakeSwap

Swap tokens in BSC chain via PancakeSwap

BSC MCP Server_getWalletInfo

Get wallet info for an address

BSC MCP Server_createFourMeme

create new meme token on four.meme

BSC MCP Server_createBEP20Token

create bep20 token

BSC MCP Server_buyMemeToken

buy meme token

BSC MCP Server_sellMemeToken

sell meme token

BSC MCP Server_pancakeAddLiquidity

add liquidity to pancake

BSC MCP Server_pancakeMyPosition

check my liquidity position on panceke

BSC MCP Server_pancakeRemovePosition

remove liquidity position on panceke

3D-MCP_getProperty

Get a property value from an object

3D-MCP_getIKChains

Get multiple IKChains by IDs

3D-MCP_getDrivers

Get multiple Drivers by IDs

3D-MCP_listDrivers

List all Drivers

3D-MCP_query

Query entities based on criteria

3D-MCP_undo

Undo the last operation

3D-MCP_redo

Redo the previously undone operation

3D-MCP_rename

Rename an entity

3D-MCP_setMetadata

Set metadata on an entity

3D-MCP_getMetadata

Get metadata from an entity

3D-MCP_createKeyframes

Create multiple Keyframes

3D-MCP_getKeyframes

Get multiple Keyframes by IDs

3D-MCP_listKeyframes

List all Keyframes

3D-MCP_updateKeyframes

Update multiple Keyframes in a single operation

3D-MCP_deleteKeyframes

Delete multiple Keyframes

3D-MCP_createChannels

Create multiple Channels

3D-MCP_getChannels

Get multiple Channels by IDs

3D-MCP_listChannels

List all Channels

3D-MCP_getChildren

Get all children of an object

3D-MCP_updateChannels

Update multiple Channels in a single operation

3D-MCP_deleteChannels

Delete multiple Channels

3D-MCP_createClips

Create multiple Clips

3D-MCP_getClips

Get multiple Clips by IDs

3D-MCP_listClips

List all Clips

3D-MCP_updateClips

Update multiple Clips in a single operation

3D-MCP_deleteClips

Delete multiple Clips

3D-MCP_createLayers

Create multiple Layers

3D-MCP_getLayers

Get multiple Layers by IDs

3D-MCP_listLayers

List all Layers

3D-MCP_batchSetProperty

Set properties on multiple objects

3D-MCP_updateLayers

Update multiple Layers in a single operation

3D-MCP_deleteLayers

Delete multiple Layers

3D-MCP_createDrivers

Create multiple Drivers

3D-MCP_updateDrivers

Update multiple Drivers in a single operation

3D-MCP_deleteDrivers

Delete multiple Drivers

3D-MCP_test

Test tool

3D-MCP_select

Select one or more objects

3D-MCP_clearSelection

Clear current selection

3D-MCP_getSelection

Get currently selected objects

3D-MCP_batchTransform

Apply transformations to multiple objects

3D-MCP_batchSetParent

Set parent for multiple objects

3D-MCP_batchGetProperty

Get property values from multiple objects

3D-MCP_duplicate

Duplicate an entity

3D-MCP_createMeshs

Create multiple Meshs

3D-MCP_getMeshs

Get multiple Meshs by IDs

3D-MCP_listMeshs

List all Meshs

3D-MCP_updateMeshs

Update multiple Meshs in a single operation

3D-MCP_deleteMeshs

Delete multiple Meshs

3D-MCP_createVertexs

Create multiple Vertexs

3D-MCP_getVertexs

Get multiple Vertexs by IDs

3D-MCP_listVertexs

List all Vertexs

3D-MCP_listIKChains

List all IKChains

3D-MCP_updateVertexs

Update multiple Vertexs in a single operation

3D-MCP_deleteVertexs

Delete multiple Vertexs

3D-MCP_createEdges

Create multiple Edges

3D-MCP_getEdges

Get multiple Edges by IDs

3D-MCP_listEdges

List all Edges

3D-MCP_updateEdges

Update multiple Edges in a single operation

3D-MCP_deleteEdges

Delete multiple Edges

3D-MCP_createFaces

Create multiple Faces

3D-MCP_getFaces

Get multiple Faces by IDs

3D-MCP_listFaces

List all Faces

3D-MCP_updateFaces

Update multiple Faces in a single operation

3D-MCP_deleteFaces

Delete multiple Faces

3D-MCP_listGroups

List all Groups

3D-MCP_createUVMaps

Create multiple UVMaps

3D-MCP_getUVMaps

Get multiple UVMaps by IDs

3D-MCP_listUVMaps

List all UVMaps

3D-MCP_updateUVMaps

Update multiple UVMaps in a single operation

3D-MCP_deleteUVMaps

Delete multiple UVMaps

3D-MCP_createMaterials

Create multiple Materials

3D-MCP_getMaterials

Get multiple Materials by IDs

3D-MCP_listMaterials

List all Materials

3D-MCP_updateMaterials

Update multiple Materials in a single operation

3D-MCP_deleteMaterials

Delete multiple Materials

3D-MCP_createGroups

Create multiple Groups

3D-MCP_getGroups

Get multiple Groups by IDs

3D-MCP_updateGroups

Update multiple Groups in a single operation

3D-MCP_deleteGroups

Delete multiple Groups

3D-MCP_createCurves

Create multiple Curves

3D-MCP_getCurves

Get multiple Curves by IDs

3D-MCP_listCurves

List all Curves

3D-MCP_updateCurves

Update multiple Curves in a single operation

3D-MCP_deleteCurves

Delete multiple Curves

3D-MCP_getQuadView

Get top, front, right, and perspective views of the scene.

3D-MCP_createSubdivisionSurfaces

Create multiple SubdivisionSurfaces

3D-MCP_getSubdivisionSurfaces

Get multiple SubdivisionSurfaces by IDs

3D-MCP_listSubdivisionSurfaces

List all SubdivisionSurfaces

3D-MCP_assignMaterials

Assign materials to meshes or specific faces

3D-MCP_updateSubdivisionSurfaces

Update multiple SubdivisionSurfaces in a single operation

3D-MCP_deleteSubdivisionSurfaces

Delete multiple SubdivisionSurfaces

3D-MCP_combineMeshes

Combine multiple meshes into a single mesh

3D-MCP_splitMeshes

Split meshes into separate objects

3D-MCP_transformVertices

Transform multiple vertices

3D-MCP_setEdgeCreases

Set crease weights for edges

3D-MCP_extrudeFaces

Extrude faces

3D-MCP_unwrapUVs

Generate UV coordinates using automatic unwrapping

3D-MCP_transformUVs

Transform UV coordinates for vertices

3D-MCP_performGroupOperations

Perform operations on object groups

3D-MCP_editCurveControlPoints

Edit control points of curves

3D-MCP_setSubdivisionLevels

Set subdivision levels for surfaces

3D-MCP_triangulate

Convert n-gons to triangles

3D-MCP_quadrangulate

Convert triangles to quads

3D-MCP_bevel

Bevel edges or vertices

3D-MCP_bridge

Create bridges between face loops

3D-MCP_importGeometry

Import geometry data sources

3D-MCP_exportGeometry

Export geometry collections to external formats

3D-MCP_createJoints

Create multiple Joints

3D-MCP_getJoints

Get multiple Joints by IDs

3D-MCP_listJoints

List all Joints

3D-MCP_updateJoints

Update multiple Joints in a single operation

3D-MCP_deleteJoints

Delete multiple Joints

3D-MCP_createConstraints

Create multiple Constraints

3D-MCP_getConstraints

Get multiple Constraints by IDs

3D-MCP_listConstraints

List all Constraints

3D-MCP_updateConstraints

Update multiple Constraints in a single operation

3D-MCP_deleteConstraints

Delete multiple Constraints

3D-MCP_createIKChains

Create multiple IKChains

3D-MCP_updateIKChains

Update multiple IKChains in a single operation

3D-MCP_deleteIKChains

Delete multiple IKChains

3D-MCP_createBlendShapes

Create multiple BlendShapes

3D-MCP_getBlendShapes

Get multiple BlendShapes by IDs

3D-MCP_listBlendShapes

List all BlendShapes

3D-MCP_updateBlendShapes

Update multiple BlendShapes in a single operation

3D-MCP_deleteBlendShapes

Delete multiple BlendShapes

Unsplash MCP Server_search_photos
Search for Unsplash photos Args: query: Search keyword page: Page number (1-based) per_page: Results per page (1-30) order_by: Sort method (relevant or latest) color: Color filter (black_and_white, black, white, yellow, orange, red, purple, magenta, green, teal, blue) orientation: Orientation filter (landscape, portrait, squarish) Returns: List[UnsplashPhoto]: List of search results containing photo objects with the following properties: - id: Unique identifier for the photo - description: Optional text description of the photo - urls: Dictionary of available image URLs in different sizes - width: Original image width in pixels - height: Original image height in pixels
mcp-mermaid-validator_validateMermaid

Validates a Mermaid diagram and returns the rendered SVG if valid

Semgrep MCP Server_start_scan_from_content

Starts a Semgrep scan with code content provided directly

Args: ctx: MCP context for sending notifications code_files: List of dictionaries with 'filename' and 'content' keys config: Semgrep configuration (e.g. "auto" or absolute path to rule file)

Returns: Dictionary with scan information

Semgrep MCP Server_get_scan_status

Gets the current status of a scan

Args: scan_id: Identifier for the scan

Returns: Dictionary with scan status information

Semgrep MCP Server_get_scan_results

Gets the results of a completed scan

Args: scan_id: Identifier for the scan

Returns: Dictionary with scan results

Semgrep MCP Server_get_supported_languages

Returns a list of supported languages by Semgrep

Returns: List of supported languages

Semgrep MCP Server_semgrep_scan

Runs a Semgrep scan on provided code content and returns the findings in JSON format

Args: code_files: List of dictionaries with 'filename' and 'content' keys config: Semgrep configuration (e.g. "auto" or absolute path to rule file)

Returns: Dictionary with scan results in Semgrep JSON format

Semgrep MCP Server_start_scan

Starts a Semgrep scan with progress updates via notifications

Args: ctx: MCP context for sending notifications target_path: Absolute path to the file or directory to scan config: Semgrep configuration (e.g. "auto" or absolute path to rule file)

Returns: Dictionary with scan information

freecad mcp_get_object

Get an object from a document. You can use this tool to get the properties of an object to see what you can check or edit.

Args: doc_name: The name of the document to get the object from. obj_name: The name of the object to get. Returns: The object and a screenshot of the object.
freecad mcp_get_parts_list

Get the list of parts in the parts library addon.

freecad mcp_create_document

Create a new document in FreeCAD.

Args: name: The name of the document to create. Returns: A message indicating the success or failure of the document creation. Examples: If you want to create a document named "MyDocument", you can use the following data. ```json { "name": "MyDocument" } ```
freecad mcp_create_object

Create a new object in FreeCAD.

Args: doc_name: The name of the document to create the object in. obj_type: The type of the object to create (e.g. 'Part::Box', 'Part::Cylinder', 'Draft::Circle', 'PartDesign::Body', etc.). obj_name: The name of the object to create. obj_properties: The properties of the object to create. Returns: A message indicating the success or failure of the object creation and a screenshot of the object. Examples: If you want to create a cylinder with a height of 30 and a radius of 10, you can use the following data. ```json { "doc_name": "MyCylinder", "obj_name": "Cylinder", "obj_type": "Part::Cylinder", "obj_properties": { "Height": 30, "Radius": 10, "Placement": { "Base": { "x": 10, "y": 10, "z": 0 }, "Rotation": { "Axis": { "x": 0, "y": 0, "z": 1 }, "Angle": 45 } }, "ViewObject": { "ShapeColor": [0.5, 0.5, 0.5, 1.0] } } } ``` If you want to create a circle with a radius of 10, you can use the following data. ```json { "doc_name": "MyCircle", "obj_name": "Circle", "obj_type": "Draft::Circle", } ``` If you want to create a FEM analysis, you can use the following data. ```json { "doc_name": "MyFEMAnalysis", "obj_name": "FEMAnalysis", } ```
freecad mcp_edit_object

Edit an object in FreeCAD. This tool is used when the create_object tool cannot handle the object creation.

Args: doc_name: The name of the document to edit the object in. obj_name: The name of the object to edit. obj_properties: The properties of the object to edit. Returns: A message indicating the success or failure of the object editing and a screenshot of the object.
freecad mcp_delete_object

Delete an object in FreeCAD.

Args: doc_name: The name of the document to delete the object from. obj_name: The name of the object to delete. Returns: A message indicating the success or failure of the object deletion and a screenshot of the object.
freecad mcp_execute_code

Execute arbitrary Python code in FreeCAD.

Args: code: The Python code to execute. Returns: A message indicating the success or failure of the code execution and a screenshot of the object.
freecad mcp_get_view

Get a screenshot of the active view.

Args: view_name: The name of the view to get the screenshot of. The following views are available: - "Isometric" - "Front" - "Top" - "Right" - "Back" - "Left" - "Bottom" - "Dimetric" - "Trimetric" Returns: A screenshot of the active view.
freecad mcp_insert_part_from_library

Insert a part from the parts library addon.

Args: relative_path: The relative path of the part to insert. Returns: A message indicating the success or failure of the part insertion and a screenshot of the object.
freecad mcp_get_objects

Get all objects in a document. You can use this tool to get the objects in a document to see what you can check or edit.

Args: doc_name: The name of the document to get the objects from. Returns: A list of objects in the document and a screenshot of the document.
VeyraX_get_tools

"Use this tool to retrieve a list of available tools from the Veyrax API. This will return dynamic tools that user has access to. You can use this tool to get the list of tools, method names and parameters, and then use tool_call tool to call the tool with the provided parameters. This method also returns all flows with name and id that user has access to (if any). "

VeyraX_tool_call

"Use this tool to execute a specific method of another tool with the provided parameters based on get-tools tool response. You need to specify the tool name, method name, and any required parameters for that method."

VeyraX_get_flow

"Use this tool to retrieve a specific workflow by its ID.

Workflow is sequence of steps that are executed in order to get some result. Flow comes with description, steps and input schema of all methods to call.

You can call this tool once you have a flowId which usually you can get from: user directly OR using get-tools method."

NEAR MCP_system_list_local_keypairs

List all accounts and their keypairs in the local keystore by network.

NEAR MCP_system_import_account

Import an account into the local keystore. This will allow the user to use this account in other tools. Remember mainnet accounts are created with a .near suffix, and testnet accounts are created with a .testnet suffix.

NEAR MCP_system_remove_local_account

Removes a local NEAR account from the local keystore. Once removed, the account will no longer be available to the user. This does not delete the account from the NEAR blockchain, it only removes the account from the local keystore.

NEAR MCP_account_view_account_summary

Get summary information about any NEAR account. This calls the public RPC endpoint to get this information.

NEAR MCP_system_search_popular_fungible_token_contracts

Search for popular fungible token contract information on the NEAR blockchain, with a grep-like search. Use this tool to search for popular fungible token contract information. This tool works by 'grepping' through a list of contract information JSON objects. Useful for getting contract information about popular tokens like USDC native, USDT, WNEAR, and more.

NEAR MCP_account_export_account

Export an account from the local keystore to a file.

NEAR MCP_account_sign_data

Cryptographically sign a piece of data with a local account's private key, then encode the result with the specified encoding. Outputs the curve, encoded signature, and encoding used.

NEAR MCP_account_verify_signature

Cryptographically verify a signed piece of data against some NEAR account's public key.

NEAR MCP_account_create_implicit_account

Create an implicit account on the NEAR blockchain. An implicit account is a new random keypair that is not associated with an account ID. Instead the account ID is derived from the public key of the keypair (a 64-character lowercase hexadecimal representation of the public key). This implicit account id can be used just as a regular account id, but remember it is not an official account id with a .near or .testnet suffix. Creating implicit accounts is useful for adding new access keys to an existing account.

NEAR MCP_account_create_account

Create a new NEAR account with a new account ID. The initial balance of this account will be funded by the account that is calling this tool. This account will be created with a random public key. If no account ID is provided, a random one will be generated. Ensure that mainnet accounts are created with a .near suffix, and testnet accounts are created with a .testnet suffix.

NEAR MCP_account_delete_account

Delete an account from the NEAR blockchain. This will also remove the account from the local keystore and any associated keypair.

NEAR MCP_account_list_access_keys

List all access keys for an given account.

NEAR MCP_account_add_access_key

Add an access key to an account. This will allow the account to interact with the contract.

NEAR MCP_account_delete_access_keys

Delete an access key from an account based on it's public key.

NEAR MCP_tokens_send_near

Send NEAR tokens to an account (in NEAR). The signer account is the sender of the tokens, and the receiver account is the recipient of the tokens. Remember mainnet accounts are created with a .near suffix, and testnet accounts are created with a .testnet suffix. The user is sending tokens as the signer account. Please ensure that the sender and receiver accounts are in the same network.

NEAR MCP_tokens_send_ft

Send Fungible Tokens (FT) like USDC native, USDT, WNEAR, etc. based on the NEP-141 and NEP-148 standards to an account. The signer account is the sender of the tokens, and the receiver account is the recipient of the tokens. Ensure the contract account id exists and is in the same network as the signer and receiver accounts.

NEAR MCP_contract_view_functions

View available functions on a NEAR smart contract.

NEAR MCP_contract_get_function_args

Get the arguments of a function call by parsing the contract's ABI or by using the nearblocks.io API (as a fallback). This function API checks recent execution results of the contract's method being queried to determine the likely arguments of the function call. Warning: This tool is experimental and is not garunteed to get the correct arguments.

NEAR MCP_contract_call_raw_function_as_read_only

Call a function of a contract as a read-only call. This is equivalent to saying we are calling a view method of the contract.

NEAR MCP_contract_call_raw_function

Call a function of a contract as a raw function call action. This tool creates a function call as a transaction which costs gas and NEAR.

mcp-coincap-jj_get-crypto-price

Get current price and 24h stats for a cryptocurrency

mcp-coincap-jj_get-market-analysis

Get detailed market analysis including top exchanges and volume distribution

mcp-coincap-jj_get-historical-analysis

Get historical price analysis with customizable timeframe

mcp-audio-analysis_load
Loads an audio file and returns the path to the audio time series Offset and duration are optional, in seconds. Be careful, you will never know the name of the song.
mcp-audio-analysis_get_duration
Returns the total duration (in seconds) of the given audio time series.
mcp-audio-analysis_tempo
Estimates the tempo (in BPM) of the given audio time series using librosa. Offset and duration are optional, in seconds.
mcp-audio-analysis_chroma_cqt
Computes the chroma CQT of the given audio time series using librosa. The chroma CQT is a representation of the audio signal in terms of its chromatic content, which is useful for music analysis. The chroma CQT is computed using the following parameters: - path_audio_time_series_y: The path to the audio time series (CSV file). It's sometimes better to take harmonics only - hop_length: The number of samples between frames. - fmin: The minimum frequency of the chroma feature. - n_chroma: The number of chroma bins (default is 12). - n_octaves: The number of octaves to include in the chroma feature. The chroma CQT is saved to a CSV file with the following columns: - note: The note name (C, C#, D, etc.). - time: The time position of the note in seconds. - amplitude: The amplitude of the note at that time. The path to the CSV file is returned.
mcp-audio-analysis_mfcc
Computes the MFCC of the given audio time series using librosa. The MFCC is a representation of the audio signal in terms of its spectral content, which is useful for music analysis. The MFCC is computed using the following parameters: - path_audio_time_series_y: The path to the audio time series (CSV file). It's sometimes better to take harmonics only
mcp-audio-analysis_beat_track
Computes the beat track of the given audio time series using librosa. The beat track is a representation of the audio signal in terms of its rhythmic content, which is useful for music analysis. The beat track is computed using the following parameters: - hop_length: The number of samples between frames. - start_bpm: The initial estimate of the tempo (in BPM). - tightness: The tightness of the beat tracking (default is 100). - units: The units of the beat track (default is "frames"). It can be frames, samples, time.
mcp-audio-analysis_download_from_url
Downloads a file from a given URL and returns the path to the downloaded file. Be careful, you will never know the name of the song.
mcp-audio-analysis_download_from_youtube
Downloads a file from a given youtube URL and returns the path to the downloaded file. Be careful, you will never know the name of the song.
Bing Search MCP Server_bing_web_search

Performs a web search using the Bing Search API for general information and websites.

Args: query: Search query (required) count: Number of results (1-50, default 10) offset: Pagination offset (default 0) market: Market code like en-US, en-GB, etc.
Bing Search MCP Server_bing_news_search

Searches for news articles using Bing News Search API for current events and timely information.

Args: query: News search query (required) count: Number of results (1-50, default 10) market: Market code like en-US, en-GB, etc. freshness: Time period of news (Day, Week, Month)
Bing Search MCP Server_bing_image_search

Searches for images using Bing Image Search API for visual content.

Args: query: Image search query (required) count: Number of results (1-50, default 10) market: Market code like en-US, en-GB, etc.
Unity Editor MCP Server_execute_menu_item

Executes a Unity menu item by path

Unity Editor MCP Server_select_object

Sets the selected object in the Unity editor by path or ID

Unity Editor MCP Server_package_manager

Manages packages in the Unity Package Manager

Unity Editor MCP Server_run_tests

Runs Unity's Test Runner tests

Unity Editor MCP Server_notify_message

Sends a message to the Unity console

ida-mcp-server_ida_get_function_assembly_by_name

Get assembly code for a function by name

ida-mcp-server_ida_get_function_assembly_by_address

Get assembly code for a function by address

ida-mcp-server_ida_get_function_decompiled_by_name

Get decompiled pseudocode for a function by name

ida-mcp-server_ida_get_function_decompiled_by_address

Get decompiled pseudocode for a function by address

ida-mcp-server_ida_get_global_variable_by_name

Get information about a global variable by name

ida-mcp-server_ida_get_global_variable_by_address

Get information about a global variable by address

ida-mcp-server_ida_get_current_function_assembly

Get assembly code for the function at the current cursor position

ida-mcp-server_ida_get_current_function_decompiled

Get decompiled pseudocode for the function at the current cursor position

ida-mcp-server_ida_rename_local_variable

Rename a local variable within a function in the IDA database

ida-mcp-server_ida_rename_global_variable

Rename a global variable in the IDA database

ida-mcp-server_ida_rename_function

Rename a function in the IDA database

ida-mcp-server_ida_rename_multi_local_variables

Rename multiple local variables within a function at once in the IDA database

ida-mcp-server_ida_rename_multi_global_variables

Rename multiple global variables at once in the IDA database

ida-mcp-server_ida_rename_multi_functions

Rename multiple functions at once in the IDA database

ida-mcp-server_ida_add_assembly_comment

Add a comment at a specific address in the assembly view of the IDA database

ida-mcp-server_ida_add_function_comment

Add a comment to a function in the IDA database

ida-mcp-server_ida_add_pseudocode_comment

Add a comment to a specific address in the function's decompiled pseudocode

ida-mcp-server_ida_execute_script

Execute a Python script in IDA Pro and return its output. The script runs in IDA's context with access to all IDA API modules.

ida-mcp-server_ida_execute_script_from_file

Execute a Python script from a file path in IDA Pro and return its output. The file should be accessible from IDA's process.

VRChat MCP Server_vrchat_get_current_user

Retrieve your own VRChat user information

VRChat MCP Server_vrchat_get_friends_list

Retrieve a list of VRChat friend information. The following information can be retrieved: - "bio" - "bioLinks" - "currentAvatarImageUrl" - "currentAvatarThumbnailImageUrl" - "currentAvatarTags" - "developerType" - "displayName" - "fallbackAvatar" - "id" - "isFriend" - "last_platform" - "last_login" - "profilePicOverride" - "pronouns" - "status" - "statusDescription" - "tags" - "userIcon" - "location" - "friendKey"

VRChat MCP Server_vrchat_search_avatars

Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other people's avatars.

VRChat MCP Server_vrchat_search_worlds

Search and list worlds by query filters.

VRChat MCP Server_vrchat_create_instance

Create a new instance of a world.

VRChat MCP Server_vrchat_join_group

Join a VRChat group by ID

VRChat MCP Server_vrchat_search_groups

Search VRChat groups by name or shortCode

Claude TypeScript MCP Servers_brave_web_search

Retrieves up-to-date information from the web using Brave Search. You should proactively use this tool whenever you need current information beyond your knowledge cutoff, when answering questions about recent events, when asked about specific facts you're uncertain about, or when providing comprehensive answers. Search automatically when you suspect information might be outdated or when greater detail would improve your response. Use this for news, technical information, current events, product details, or any topic where fresh, accurate data would enhance your answer quality.

Claude TypeScript MCP Servers_brave_local_search

Finds information about local businesses, services, attractions, and locations with real-time data. Use this tool proactively whenever a query mentions specific places or location-based information. This is especially useful for questions about restaurants, shops, tourist attractions, local services, or any place-based inquiry. You should automatically search when users ask about places 'near' somewhere, business hours, local reviews, addresses, or location details that would benefit from current information. This provides much more accurate and up-to-date information than your built-in knowledge.

terraform-cloud-mcp_get_account_details

Get account details for a Terraform Cloud API token

This endpoint shows information about the currently authenticated user or service account, useful for verifying identity, retrieving email address, and checking authentication status. It returns the same type of object as the Users API, but also includes an email address, which is hidden when viewing info about other users. API endpoint: GET /account/details Returns: Raw API response with account information from Terraform Cloud including user ID, username, email address, and authentication status See: docs/tools/account_tools.md for usage examples
terraform-cloud-mcp_list_workspaces

List workspaces in an organization.

Retrieves a paginated list of all workspaces in a Terraform Cloud organization. Results can be filtered using a search string to find specific workspaces by name. Use this tool to discover existing workspaces, check workspace configurations, or find specific workspaces by partial name match. API endpoint: GET /organizations/{organization}/workspaces Args: organization: The name of the organization to list workspaces from page_number: The page number to return (default: 1) page_size: The number of items per page (default: 20, max: 100) search: Optional search string to filter workspaces by name Returns: Paginated list of workspaces with their configuration settings and metadata See: docs/tools/workspace_tools.md for usage examples
terraform-cloud-mcp_get_workspace_details

Get details for a specific workspace, identified either by ID or by org name and workspace name.

Retrieves comprehensive information about a workspace including its configuration, VCS settings, execution mode, and other attributes. This is useful for checking workspace settings before operations or determining the current state of a workspace. The workspace can be identified either by its ID directly, or by the combination of organization name and workspace name. API endpoint: - GET /workspaces/{workspace_id} (when using workspace_id) - GET /organizations/{organization}/workspaces/{workspace_name} (when using org+name) Args: workspace_id: The ID of the workspace (format: "ws-xxxxxxxx") organization: The name of the organization (required if workspace_id not provided) workspace_name: The name of the workspace (required if workspace_id not provided) Returns: Comprehensive workspace details including settings, configuration and status See: docs/tools/workspace_tools.md for usage examples
terraform-cloud-mcp_force_unlock_workspace

Force unlock a workspace. This should be used with caution.

Forces a workspace to unlock even when the normal unlock process isn't possible. This is typically needed when a run has orphaned a lock or when the user who locked the workspace is unavailable. This operation requires admin privileges on the workspace. WARNING: Forcing an unlock can be dangerous if the workspace is legitimately locked for active operations. Only use this when you are certain it's safe to unlock. API endpoint: POST /workspaces/{workspace_id}/actions/force-unlock Args: workspace_id: The ID of the workspace to force unlock (format: "ws-xxxxxxxx") Returns: The workspace with updated lock status and related metadata See: docs/tools/workspace_tools.md for usage examples
terraform-cloud-mcp_create_workspace

Create a new workspace in an organization.

Creates a new Terraform Cloud workspace which serves as an isolated environment for managing infrastructure. Workspaces contain variables, state files, and run histories for a specific infrastructure configuration. API endpoint: POST /organizations/{organization}/workspaces Args: organization: The name of the organization name: The name to give the workspace params: Additional workspace parameters (optional): - description: Human-readable description of the workspace - execution_mode: How Terraform runs are executed (remote, local, agent) - terraform_version: Version of Terraform to use (default: latest) - working_directory: Subdirectory to use when running Terraform - vcs_repo: Version control repository configuration - auto_apply: Whether to automatically apply successful plans - file_triggers_enabled: Whether file changes trigger runs - trigger_prefixes: Directories that trigger runs when changed - trigger_patterns: Glob patterns that trigger runs when files match - allow_destroy_plan: Whether to allow destruction plans - auto_apply_run_trigger: Whether to auto-apply changes from run triggers Returns: The created workspace data including configuration, settings and metadata See: docs/tools/workspace_tools.md for usage examples
terraform-cloud-mcp_update_workspace

Update an existing workspace.

Modifies the settings of a Terraform Cloud workspace. This can be used to change attributes like execution mode, VCS repository settings, description, or any other workspace configuration options. Only specified attributes will be updated; unspecified attributes remain unchanged. API endpoint: PATCH /organizations/{organization}/workspaces/{workspace_name} Args: organization: The name of the organization that owns the workspace workspace_name: The name of the workspace to update params: Workspace parameters to update (optional): - name: New name for the workspace (if renaming) - description: Human-readable description of the workspace - execution_mode: How Terraform runs are executed (remote, local, agent) - terraform_version: Version of Terraform to use - working_directory: Subdirectory to use when running Terraform - vcs_repo: Version control repository configuration (oauth-token-id, identifier) - auto_apply: Whether to automatically apply successful plans - file_triggers_enabled: Whether file changes trigger runs - trigger_prefixes: Directories that trigger runs when changed - trigger_patterns: Glob patterns that trigger runs when files match - allow_destroy_plan: Whether to allow destruction plans - auto_apply_run_trigger: Whether to auto-apply changes from run triggers Returns: The updated workspace with all current settings and configuration See: docs/tools/workspace_tools.md for usage examples
terraform-cloud-mcp_delete_workspace

Delete a workspace.

Permanently deletes a Terraform Cloud workspace and all its resources including state versions, run history, and configuration versions. This action cannot be undone. WARNING: This is a destructive operation. For workspaces that have active resources, consider running a destroy plan first or use safe_delete_workspace instead. API endpoint: DELETE /organizations/{organization}/workspaces/{workspace_name} Args: organization: The name of the organization that owns the workspace workspace_name: The name of the workspace to delete Returns: Success message with no content (HTTP 204) if successful Error response with explanation if the workspace cannot be deleted See: docs/tools/workspace_tools.md for usage examples
terraform-cloud-mcp_safe_delete_workspace

Safely delete a workspace by first checking if it can be deleted.

Initiates a safe delete operation which checks if the workspace has resources before deleting it. This is a safer alternative to delete_workspace as it prevents accidental deletion of workspaces with active infrastructure. The operation follows these steps: 1. Checks if the workspace has any resources 2. If no resources exist, deletes the workspace 3. If resources exist, returns an error indicating the workspace cannot be safely deleted API endpoint: POST /organizations/{organization}/workspaces/{workspace_name}/actions/safe-delete Args: organization: The name of the organization that owns the workspace workspace_name: The name of the workspace to delete Returns: Status of the safe delete operation including: - Success response if deletion was completed - Error with details if workspace has resources and cannot be safely deleted - List of resources that would be affected by deletion (if applicable) See: docs/tools/workspace_tools.md for usage examples
terraform-cloud-mcp_lock_workspace

Lock a workspace.

Locks a workspace to prevent runs from being queued. This is useful when you want to prevent changes to infrastructure while performing maintenance or making manual adjustments. Locking a workspace does not affect currently running plans or applies. API endpoint: POST /workspaces/{workspace_id}/actions/lock Args: workspace_id: The ID of the workspace to lock (format: "ws-xxxxxxxx") reason: Optional reason for locking Returns: The workspace with updated lock status and related metadata See: docs/tools/workspace_tools.md for usage examples
terraform-cloud-mcp_unlock_workspace

Unlock a workspace.

Removes the lock from a workspace, allowing runs to be queued. This enables normal operation of the workspace after it was previously locked. API endpoint: POST /workspaces/{workspace_id}/actions/unlock Args: workspace_id: The ID of the workspace to unlock (format: "ws-xxxxxxxx") Returns: The workspace with updated lock status and related metadata See: docs/tools/workspace_tools.md for usage examples
terraform-cloud-mcp_create_run

Create a run in a workspace

Creates a new Terraform run to trigger infrastructure changes through Terraform Cloud, representing a single execution of plan and apply operations. The run queues in the workspace and executes based on the workspace's execution mode and settings. Use this to deploy new infrastructure, apply configuration changes, or destroy resources. API endpoint: POST /runs Args: workspace_id: The workspace ID to execute the run in (format: "ws-xxxxxxxx") params: Optional run configuration with: - message: Description of the run's purpose - is_destroy: Whether to destroy all resources managed by the workspace - auto_apply: Whether to auto-apply after a successful plan - refresh: Whether to refresh Terraform state before planning - refresh_only: Only refresh the state without planning changes - plan_only: Create a speculative plan without applying - allow_empty_apply: Allow applying when there are no changes - target_addrs: List of resource addresses to specifically target - replace_addrs: List of resource addresses to force replacement - variables: Run-specific variables that override workspace variables - terraform_version: Specific Terraform version to use for this run - save_plan: Save the plan for later execution - debugging_mode: Enable extended debug logging Returns: The created run details with ID, status, configuration information, workspace relationship, and links to associated resources See: docs/tools/run_tools.md for usage examples
terraform-cloud-mcp_list_runs_in_workspace

List runs in a workspace with filtering and pagination

Retrieves run history for a specific workspace with options to filter by status, operation type, source, and other criteria. Useful for auditing changes, troubleshooting, or monitoring deployment history. API endpoint: GET /workspaces/{workspace_id}/runs Args: workspace_id: The workspace ID to list runs for (format: "ws-xxxxxxxx") page_number: Page number to fetch (default: 1) page_size: Number of results per page (default: 20) filter_operation: Filter by operation type filter_status: Filter by status filter_source: Filter by source filter_status_group: Filter by status group filter_timeframe: Filter by timeframe filter_agent_pool_names: Filter by agent pool names search_user: Search by VCS username search_commit: Search by commit SHA search_basic: Search across run ID, message, commit SHA, and username Returns: List of runs with metadata, status info, and pagination details See: docs/tools/run_tools.md for usage examples
terraform-cloud-mcp_list_runs_in_organization

List runs across all workspaces in an organization

Retrieves run history across all workspaces in an organization with powerful filtering. Useful for organization-wide auditing, monitoring deployments across teams, or finding specific runs by commit or author. API endpoint: GET /organizations/{organization}/runs Args: organization: The organization name page_number: Page number to fetch (default: 1) page_size: Number of results per page (default: 20) filter_operation: Filter by operation type filter_status: Filter by status filter_source: Filter by source filter_status_group: Filter by status group filter_timeframe: Filter by timeframe filter_agent_pool_names: Filter by agent pool names filter_workspace_names: Filter by workspace names search_user: Search by VCS username search_commit: Search by commit SHA search_basic: Basic search across run attributes Returns: List of runs across workspaces with metadata and pagination details See: docs/tools/run_tools.md for usage examples
terraform-cloud-mcp_get_run_details

Get detailed information about a specific run

Retrieves comprehensive information about a run including its current status, plan output, and relationship to other resources. Use to check run progress or results. API endpoint: GET /runs/{run_id} Args: run_id: The ID of the run to retrieve details for (format: "run-xxxxxxxx") Returns: Complete run details including status, plan, and relationships See: docs/tools/run_tools.md for usage examples
terraform-cloud-mcp_apply_run

Apply a run that is paused waiting for confirmation after a plan

Confirms and executes the apply phase for a run that has completed planning and is waiting for approval. Use this when you've reviewed the plan output and want to apply the proposed changes to your infrastructure. API endpoint: POST /runs/{run_id}/actions/apply Args: run_id: The ID of the run to apply (format: "run-xxxxxxxx") comment: An optional comment explaining the reason for applying the run Returns: Run details with updated status information and confirmation of the apply action including timestamp information and any comment provided See: docs/tools/run_tools.md for usage examples
terraform-cloud-mcp_discard_run

Discard a run that is paused waiting for confirmation

Cancels a run without applying its changes, typically used when the plan shows undesired changes or after reviewing and rejecting a plan. This action removes the run from the queue and unlocks the workspace for new runs. API endpoint: POST /runs/{run_id}/actions/discard Args: run_id: The ID of the run to discard (format: "run-xxxxxxxx") comment: An optional explanation for why the run was discarded Returns: Run status update with discarded state information, timestamp of the discard action, and user information See: docs/tools/run_tools.md for usage examples
terraform-cloud-mcp_cancel_run

Cancel a run that is currently planning or applying

Gracefully stops an in-progress run during planning or applying phases. Use this when you need to stop a run that's taking too long, consuming too many resources, or needs to be stopped for any reason. The operation attempts to cleanly terminate the run by sending an interrupt signal. API endpoint: POST /runs/{run_id}/actions/cancel Args: run_id: The ID of the run to cancel (format: "run-xxxxxxxx") comment: An optional explanation for why the run was canceled Returns: Run status update with canceled state, timestamp of cancellation, and any provided comment in the response metadata See: docs/tools/run_tools.md for usage examples
terraform-cloud-mcp_force_cancel_run

Forcefully cancel a run immediately

Immediately terminates a run that hasn't responded to a normal cancel request. Use this as a last resort when a run is stuck and not responding to regular cancellation. This action bypasses the graceful shutdown process and forces the workspace to be unlocked. API endpoint: POST /runs/{run_id}/actions/force-cancel Args: run_id: The ID of the run to force cancel (format: "run-xxxxxxxx") comment: An optional explanation for why the run was force canceled Returns: Run status update confirming forced cancellation with timestamp, user information, and workspace unlock status See: docs/tools/run_tools.md for usage examples
terraform-cloud-mcp_force_execute_run

Forcefully execute a run by canceling all prior runs

Prioritizes a specific run by canceling other queued runs to unlock the workspace, equivalent to clicking "Run this plan now" in the UI. Use this when a run is stuck in the pending queue but needs immediate execution due to urgency or priority over other queued runs. API endpoint: POST /runs/{run_id}/actions/force-execute Args: run_id: The ID of the run to execute (format: "run-xxxxxxxx") Returns: Status update confirming the run has been promoted to active status, with information about which runs were canceled to allow execution See: docs/tools/run_tools.md for usage examples
terraform-cloud-mcp_get_organization_details

Get details for a specific organization

Retrieves comprehensive information about an organization including settings, email contact info, and configuration defaults. API endpoint: GET /organizations/{organization} Args: organization: The organization name to retrieve details for (required) Returns: Organization details including name, email, settings and configuration See: docs/tools/organization_tools.md for usage examples
terraform-cloud-mcp_get_organization_entitlements

Show entitlement set for organization features

Retrieves information about available features and capabilities based on the organization's subscription tier. API endpoint: GET /organizations/{organization}/entitlement-set Args: organization: The organization name to retrieve entitlements for (required) Returns: Entitlement set details including feature limits and subscription information See: docs/tools/organization_tools.md for usage examples
terraform-cloud-mcp_list_organizations

List organizations with filtering options

Retrieves a paginated list of organizations the current user has access to, with options to search by name or email address. API endpoint: GET /organizations Args: page_number: Page number to fetch (default: 1) page_size: Number of results per page (default: 20) query: Search query to filter by name and email query_email: Search query to filter by email only query_name: Search query to filter by name only Returns: List of organizations with metadata and pagination information See: docs/tools/organization_tools.md for usage examples
terraform-cloud-mcp_create_organization

Create a new organization in Terraform Cloud

Creates a new organization with the given name and email, allowing workspaces and teams to be created within it. This is the first step in setting up a new environment in Terraform Cloud. API endpoint: POST /organizations Args: name: The name of the organization (required) email: Admin email address (required) params: Additional organization settings: - collaborator_auth_policy: Authentication policy (password or two_factor_mandatory) - session_timeout: Session timeout after inactivity in minutes - session_remember: Session total expiration time in minutes - cost_estimation_enabled: Whether to enable cost estimation for workspaces - default_execution_mode: Default workspace execution mode (remote, local, agent) - aggregated_commit_status_enabled: Whether to aggregate VCS status updates - speculative_plan_management_enabled: Whether to auto-cancel unused speculative plans - assessments_enforced: Whether to enforce health assessments for all workspaces - allow_force_delete_workspaces: Whether to allow deleting workspaces with resources - default_agent_pool_id: Default agent pool ID (required when using agent mode) Returns: The created organization details including ID and created timestamp See: docs/tools/organization_tools.md for usage examples
terraform-cloud-mcp_update_organization

Update an existing organization in Terraform Cloud

Modifies organization settings such as email contact, authentication policy, or other configuration options. Only specified attributes will be updated. API endpoint: PATCH /organizations/{organization} Args: organization: The name of the organization to update (required) params: Organization parameters to update: - email: Admin email address for the organization - collaborator_auth_policy: Authentication policy (password or two_factor_mandatory) - session_timeout: Session timeout after inactivity in minutes - session_remember: Session total expiration time in minutes - cost_estimation_enabled: Whether to enable cost estimation for workspaces - default_execution_mode: Default workspace execution mode (remote, local, agent) - aggregated_commit_status_enabled: Whether to aggregate VCS status updates - speculative_plan_management_enabled: Whether to auto-cancel unused speculative plans - assessments_enforced: Whether to enforce health assessments for all workspaces - allow_force_delete_workspaces: Whether to allow deleting workspaces with resources Returns: The updated organization with all current settings See: docs/tools/organization_tools.md for usage examples
terraform-cloud-mcp_delete_organization

Delete an organization from Terraform Cloud

Permanently removes an organization including all its workspaces, teams, and resources. This action cannot be undone. Organization names are globally unique and cannot be recreated with the same name later. API endpoint: DELETE /organizations/{organization} Args: organization: The name of the organization to delete (required) Returns: Success confirmation (HTTP 204 No Content) or error details See: docs/tools/organization_tools.md for usage examples
mem0 Memory System_add_memory

Stores a piece of text as a memory in Mem0.

mem0 Memory System_search_memory

Searches stored memories in Mem0 based on a query.

mem0 Memory System_delete_memory

Deletes a specific memory from Mem0 by ID.

Unstructured API MCP Server_create_s3_source

Create an S3 source connector.

Args: name: A unique name for this connector remote_url: The S3 URI to the bucket or folder (e.g., s3://my-bucket/) recursive: Whether to access subfolders within the bucket Returns: String containing the created source connector information
Unstructured API MCP Server_update_s3_source

Update an S3 source connector.

Args: source_id: ID of the source connector to update remote_url: The S3 URI to the bucket or folder recursive: Whether to access subfolders within the bucket Returns: String containing the updated source connector information
Unstructured API MCP Server_delete_s3_source

Delete an S3 source connector.

Args: source_id: ID of the source connector to delete Returns: String containing the result of the deletion
Unstructured API MCP Server_create_azure_source

Create an Azure source connector.

Args: name: A unique name for this connector remote_url: The Azure Storage remote URL, with the format az://<container-name>/<path/to/file/or/folder/in/container/as/needed> recursive: Whether to access subfolders within the bucket Returns: String containing the created source connector information
Unstructured API MCP Server_update_azure_source

Update an azure source connector.

Args: source_id: ID of the source connector to update remote_url: The Azure Storage remote URL, with the format az://<container-name>/<path/to/file/or/folder/in/container/as/needed> recursive: Whether to access subfolders within the bucket Returns: String containing the updated source connector information
Unstructured API MCP Server_delete_azure_source

Delete an azure source connector.

Args: source_id: ID of the source connector to delete Returns: String containing the result of the deletion
Unstructured API MCP Server_create_gdrive_source

Create an gdrive source connector.

Args: name: A unique name for this connector remote_url: The gdrive URI to the bucket or folder (e.g., gdrive://my-bucket/) recursive: Whether to access subfolders within the bucket Returns: String containing the created source connector information
Unstructured API MCP Server_update_gdrive_source

Update an gdrive source connector.

Args: source_id: ID of the source connector to update remote_url: The gdrive URI to the bucket or folder recursive: Whether to access subfolders within the bucket Returns: String containing the updated source connector information
Unstructured API MCP Server_delete_gdrive_source

Delete an gdrive source connector.

Args: source_id: ID of the source connector to delete Returns: String containing the result of the deletion
Unstructured API MCP Server_create_s3_destination

Create an S3 destination connector.

Args: name: A unique name for this connector remote_url: The S3 URI to the bucket or folder key: The AWS access key ID secret: The AWS secret access key token: The AWS STS session token for temporary access (optional) endpoint_url: Custom URL if connecting to a non-AWS S3 bucket Returns: String containing the created destination connector information
Unstructured API MCP Server_update_s3_destination

Update an S3 destination connector.

Args: destination_id: ID of the destination connector to update remote_url: The S3 URI to the bucket or folder Returns: String containing the updated destination connector information
Unstructured API MCP Server_delete_s3_destination

Delete an S3 destination connector.

Args: destination_id: ID of the destination connector to delete Returns: String containing the result of the deletion
Unstructured API MCP Server_create_weaviate_destination

Create an weaviate vector database destination connector.

Args: cluster_url: URL of the weaviate cluster collection : Name of the collection to use in the weaviate cluster Note: The collection is a table in the weaviate cluster. In platform, there are dedicated code to generate collection for users here, due to the simplicity of the server, we are not generating it for users. Returns: String containing the created destination connector information
Unstructured API MCP Server_update_weaviate_destination

Update an weaviate destination connector.

Args: destination_id: ID of the destination connector to update cluster_url (optional): URL of the weaviate cluster collection (optional): Name of the collection(like a file) to use in the weaviate cluster Returns: String containing the updated destination connector information
Unstructured API MCP Server_delete_weaviate_destination

Delete an weaviate destination connector.

Args: destination_id: ID of the destination connector to delete Returns: String containing the result of the deletion
Unstructured API MCP Server_create_astradb_destination

Create an AstraDB destination connector.

Args: name: A unique name for this connector collection_name: The name of the collection to use keyspace: The AstraDB keyspace batch_size: The batch size for inserting documents, must be positive (default: 20) Note: A collection in AstraDB is a schemaless document store optimized for NoSQL workloads, equivalent to a table in traditional databases. A keyspace is the top-level namespace in AstraDB that groups multiple collections. We require the users to create their own collection and keyspace before creating the connector. Returns: String containing the created destination connector information
Unstructured API MCP Server_update_astradb_destination

Update an AstraDB destination connector.

Args: destination_id: ID of the destination connector to update collection_name: The name of the collection to use (optional) keyspace: The AstraDB keyspace (optional) batch_size: The batch size for inserting documents (optional) Note: We require the users to create their own collection and keyspace before creating the connector. Returns: String containing the updated destination connector information
Unstructured API MCP Server_delete_astradb_destination

Delete an AstraDB destination connector.

Args: destination_id: ID of the destination connector to delete Returns: String containing the result of the deletion
Unstructured API MCP Server_create_neo4j_destination

Create an neo4j destination connector.

Args: name: A unique name for this connector database: The neo4j database, e.g. "neo4j" uri: The neo4j URI, e.g. neo4j+s://<neo4j_instance_id>.databases.neo4j.io username: The neo4j username Returns: String containing the created destination connector information
Unstructured API MCP Server_update_neo4j_destination

Update an neo4j destination connector.

Args: destination_id: ID of the destination connector to update database: The neo4j database, e.g. "neo4j" uri: The neo4j URI, e.g. neo4j+s://<neo4j_instance_id>.databases.neo4j.io username: The neo4j username Returns: String containing the updated destination connector information
Unstructured API MCP Server_delete_neo4j_destination

Delete an neo4j destination connector.

Args: destination_id: ID of the destination connector to delete Returns: String containing the result of the deletion
Unstructured API MCP Server_invoke_firecrawl_crawlhtml

Start an asynchronous web crawl job using Firecrawl to retrieve HTML content.

Args: url: URL to crawl s3_uri: S3 URI where results will be uploaded limit: Maximum number of pages to crawl (default: 100) Returns: Dictionary with crawl job information including the job ID
Unstructured API MCP Server_check_crawlhtml_status

Check the status of an existing Firecrawl HTML crawl job.

Args: crawl_id: ID of the crawl job to check Returns: Dictionary containing the current status of the crawl job
Unstructured API MCP Server_invoke_firecrawl_llmtxt

Start an asynchronous llmfull.txt generation job using Firecrawl. This file is a standardized markdown file containing information to help LLMs use a website at inference time. The llmstxt endpoint leverages Firecrawl to crawl your website and extracts data using gpt-4o-mini Args: url: URL to crawl s3_uri: S3 URI where results will be uploaded max_urls: Maximum number of pages to crawl (1-100, default: 10)

Returns: Dictionary with job information including the job ID
Unstructured API MCP Server_check_llmtxt_status

Check the status of an existing llmfull.txt generation job.

Args: job_id: ID of the llmfull.txt generation job to check Returns: Dictionary containing the current status of the job and text content if completed
Unstructured API MCP Server_cancel_crawlhtml_job

Cancel an in-progress Firecrawl HTML crawl job.

Args: crawl_id: ID of the crawl job to cancel Returns: Dictionary containing the result of the cancellation
Unstructured API MCP Server_list_sources
List available sources from the Unstructured API. Args: source_type: Optional source connector type to filter by Returns: String containing the list of sources
Unstructured API MCP Server_get_source_info

Get detailed information about a specific source connector.

Args: source_id: ID of the source connector to get information for, should be valid UUID Returns: String containing the source connector information
Unstructured API MCP Server_list_destinations

List available destinations from the Unstructured API.

Args: destination_type: Optional destination connector type to filter by Returns: String containing the list of destinations
Unstructured API MCP Server_get_destination_info

Get detailed information about a specific destination connector.

Args: destination_id: ID of the destination connector to get information for Returns: String containing the destination connector information
Unstructured API MCP Server_list_workflows
List workflows from the Unstructured API. Args: destination_id: Optional destination connector ID to filter by source_id: Optional source connector ID to filter by status: Optional workflow status to filter by Returns: String containing the list of workflows
Unstructured API MCP Server_get_workflow_info

Get detailed information about a specific workflow.

Args: workflow_id: ID of the workflow to get information for Returns: String containing the workflow information
Unstructured API MCP Server_create_workflow

Create a new workflow.

Args: workflow_config: A Typed Dictionary containing required fields (destination_id - should be a valid UUID, name, source_id - should be a valid UUID, workflow_type) and non-required fields (schedule, and workflow_nodes). Note workflow_nodes is only enabled when workflow_type is `custom` and is a list of WorkflowNodeTypedDict: partition, prompter,chunk, embed Below is an example of a partition workflow node: { "name": "vlm-partition", "type": "partition", "sub_type": "vlm", "settings": { "provider": "your favorite provider", "model": "your favorite model" } } Returns: String containing the created workflow information

Custom workflow DAG nodes

  • If WorkflowType is set to custom, you must also specify the settings for the workflows directed acyclic graph (DAG) nodes. These nodes settings are specified in the workflow_nodes array.
  • A Source node is automatically created when you specify the source_id value outside of the workflow_nodes array.
  • A Destination node is automatically created when you specify the destination_id value outside of the workflow_nodes array.
  • You can specify Partitioner, Chunker, Prompter, and Embedder nodes.
  • The order of the nodes in the workflow_nodes array will be the same order that these nodes appear in the DAG, with the first node in the array added directly after the Source node. The Destination node follows the last node in the array.
  • Be sure to specify nodes in the allowed order. The following DAG placements are all allowed:
    • Source -> Partitioner -> Destination,
    • Source -> Partitioner -> Chunker -> Destination,
    • Source -> Partitioner -> Chunker -> Embedder -> Destination,
    • Source -> Partitioner -> Prompter -> Chunker -> Destination,
    • Source -> Partitioner -> Prompter -> Chunker -> Embedder -> Destination

Partitioner node A Partitioner node has a type of partition and a subtype of auto, vlm, hi_res, or fast.

Examples:

  • auto strategy: { "name": "Partitioner", "type": "partition", "subtype": "vlm", "settings": { "provider": "anthropic", (required) "model": "claude-3-5-sonnet-20241022", (required) "output_format": "text/html", "user_prompt": null, "format_html": true, "unique_element_ids": true, "is_dynamic": true, "allow_fast": true } }
  • vlm strategy: Allowed values are provider and model. Below are examples: - "provider": "anthropic" "model": "claude-3-5-sonnet-20241022", - "provider": "openai" "model": "gpt-4o"
  • hi_res strategy: { "name": "Partitioner", "type": "partition", "subtype": "unstructured_api", "settings": { "strategy": "hi_res", "include_page_breaks": <true|false>, "pdf_infer_table_structure": <true|false>, "exclude_elements": [ "<element-name>", "<element-name>" ], "xml_keep_tags": <true|false>, "encoding": "<encoding>", "ocr_languages": [ "<language>", "<language>" ], "extract_image_block_types": [ "image", "table" ], "infer_table_structure": <true|false> } }
  • fast strategy { "name": "Partitioner", "type": "partition", "subtype": "unstructured_api", "settings": { "strategy": "fast", "include_page_breaks": <true|false>, "pdf_infer_table_structure": <true|false>, "exclude_elements": [ "<element-name>", "<element-name>" ], "xml_keep_tags": <true|false>, "encoding": "<encoding>", "ocr_languages": [ "<language-code>", "<language-code>" ], "extract_image_block_types": [ "image", "table" ], "infer_table_structure": <true|false> } }

Chunker node A Chunker node has a type of chunk and subtype of chunk_by_character or chunk_by_title.

  • chunk_by_character { "name": "Chunker", "type": "chunk", "subtype": "chunk_by_character", "settings": { "include_orig_elements": <true|false>, "new_after_n_chars": <new-after-n-chars>, (required, if not provided

set same as max_characters) "max_characters": <max-characters>, (required) "overlap": <overlap>, (required, if not provided set default to 0) "overlap_all": <true|false>, "contextual_chunking_strategy": "v1" } }

  • chunk_by_title { "name": "Chunker", "type": "chunk", "subtype": "chunk_by_title", "settings": { "multipage_sections": <true|false>, "combine_text_under_n_chars": <combine-text-under-n-chars>, "include_orig_elements": <true|false>, "new_after_n_chars": <new-after-n-chars>, (required, if not provided

set same as max_characters) "max_characters": <max-characters>, (required) "overlap": <overlap>, (required, if not provided set default to 0) "overlap_all": <true|false>, "contextual_chunking_strategy": "v1" } }

Prompter node An Prompter node has a type of prompter and subtype of:

  • openai_image_description,
  • anthropic_image_description,
  • bedrock_image_description,
  • vertexai_image_description,
  • openai_table_description,
  • anthropic_table_description,
  • bedrock_table_description,
  • vertexai_table_description,
  • openai_table2html,
  • openai_ner

Example: { "name": "Prompter", "type": "prompter", "subtype": "<subtype>", "settings": {} }

Embedder node An Embedder node has a type of embed

Allowed values for subtype and model_name include:

  • "subtype": "azure_openai"
    • "model_name": "text-embedding-3-small"
    • "model_name": "text-embedding-3-large"
    • "model_name": "text-embedding-ada-002"
  • "subtype": "bedrock"
    • "model_name": "amazon.titan-embed-text-v2:0"
    • "model_name": "amazon.titan-embed-text-v1"
    • "model_name": "amazon.titan-embed-image-v1"
    • "model_name": "cohere.embed-english-v3"
    • "model_name": "cohere.embed-multilingual-v3"
  • "subtype": "togetherai":
    • "model_name": "togethercomputer/m2-bert-80M-2k-retrieval"
    • "model_name": "togethercomputer/m2-bert-80M-8k-retrieval"
    • "model_name": "togethercomputer/m2-bert-80M-32k-retrieval"

Example: { "name": "Embedder", "type": "embed", "subtype": "<subtype>", "settings": { "model_name": "<model-name>" } }

Unstructured API MCP Server_run_workflow

Run a specific workflow.

Args: workflow_id: ID of the workflow to run Returns: String containing the response from the workflow execution
Unstructured API MCP Server_update_workflow

Update an existing workflow.

Args: workflow_id: ID of the workflow to update workflow_config: A Typed Dictionary containing required fields (destination_id, name, source_id, workflow_type) and non-required fields (schedule, and workflow_nodes) Returns: String containing the updated workflow information

Custom workflow DAG nodes

  • If WorkflowType is set to custom, you must also specify the settings for the workflows directed acyclic graph (DAG) nodes. These nodes settings are specified in the workflow_nodes array.
  • A Source node is automatically created when you specify the source_id value outside of the workflow_nodes array.
  • A Destination node is automatically created when you specify the destination_id value outside of the workflow_nodes array.
  • You can specify Partitioner, Chunker, Prompter, and Embedder nodes.
  • The order of the nodes in the workflow_nodes array will be the same order that these nodes appear in the DAG, with the first node in the array added directly after the Source node. The Destination node follows the last node in the array.
  • Be sure to specify nodes in the allowed order. The following DAG placements are all allowed:
    • Source -> Partitioner -> Destination,
    • Source -> Partitioner -> Chunker -> Destination,
    • Source -> Partitioner -> Chunker -> Embedder -> Destination,
    • Source -> Partitioner -> Prompter -> Chunker -> Destination,
    • Source -> Partitioner -> Prompter -> Chunker -> Embedder -> Destination

Partitioner node A Partitioner node has a type of partition and a subtype of auto, vlm, hi_res, or fast.

Examples:

  • auto strategy: { "name": "Partitioner", "type": "partition", "subtype": "vlm", "settings": { "provider": "anthropic", (required) "model": "claude-3-5-sonnet-20241022", (required) "output_format": "text/html", "user_prompt": null, "format_html": true, "unique_element_ids": true, "is_dynamic": true, "allow_fast": true } }
  • vlm strategy: Allowed values are provider and model. Below are examples: - "provider": "anthropic" "model": "claude-3-5-sonnet-20241022", - "provider": "openai" "model": "gpt-4o"
  • hi_res strategy: { "name": "Partitioner", "type": "partition", "subtype": "unstructured_api", "settings": { "strategy": "hi_res", "include_page_breaks": <true|false>, "pdf_infer_table_structure": <true|false>, "exclude_elements": [ "<element-name>", "<element-name>" ], "xml_keep_tags": <true|false>, "encoding": "<encoding>", "ocr_languages": [ "<language>", "<language>" ], "extract_image_block_types": [ "image", "table" ], "infer_table_structure": <true|false> } }
  • fast strategy { "name": "Partitioner", "type": "partition", "subtype": "unstructured_api", "settings": { "strategy": "fast", "include_page_breaks": <true|false>, "pdf_infer_table_structure": <true|false>, "exclude_elements": [ "<element-name>", "<element-name>" ], "xml_keep_tags": <true|false>, "encoding": "<encoding>", "ocr_languages": [ "<language-code>", "<language-code>" ], "extract_image_block_types": [ "image", "table" ], "infer_table_structure": <true|false> } }

Chunker node A Chunker node has a type of chunk and subtype of chunk_by_character or chunk_by_title.

  • chunk_by_character { "name": "Chunker", "type": "chunk", "subtype": "chunk_by_character", "settings": { "include_orig_elements": <true|false>, "new_after_n_chars": <new-after-n-chars>, (required, if not provided

set same as max_characters) "max_characters": <max-characters>, (required) "overlap": <overlap>, (required, if not provided set default to 0) "overlap_all": <true|false>, "contextual_chunking_strategy": "v1" } }

  • chunk_by_title { "name": "Chunker", "type": "chunk", "subtype": "chunk_by_title", "settings": { "multipage_sections": <true|false>, "combine_text_under_n_chars": <combine-text-under-n-chars>, "include_orig_elements": <true|false>, "new_after_n_chars": <new-after-n-chars>, (required, if not provided

set same as max_characters) "max_characters": <max-characters>, (required) "overlap": <overlap>, (required, if not provided set default to 0) "overlap_all": <true|false>, "contextual_chunking_strategy": "v1" } }

Prompter node An Prompter node has a type of prompter and subtype of:

  • openai_image_description,
  • anthropic_image_description,
  • bedrock_image_description,
  • vertexai_image_description,
  • openai_table_description,
  • anthropic_table_description,
  • bedrock_table_description,
  • vertexai_table_description,
  • openai_table2html,
  • openai_ner

Example: { "name": "Prompter", "type": "prompter", "subtype": "<subtype>", "settings": {} }

Embedder node An Embedder node has a type of embed

Allowed values for subtype and model_name include:

  • "subtype": "azure_openai"
    • "model_name": "text-embedding-3-small"
    • "model_name": "text-embedding-3-large"
    • "model_name": "text-embedding-ada-002"
  • "subtype": "bedrock"
    • "model_name": "amazon.titan-embed-text-v2:0"
    • "model_name": "amazon.titan-embed-text-v1"
    • "model_name": "amazon.titan-embed-image-v1"
    • "model_name": "cohere.embed-english-v3"
    • "model_name": "cohere.embed-multilingual-v3"
  • "subtype": "togetherai":
    • "model_name": "togethercomputer/m2-bert-80M-2k-retrieval"
    • "model_name": "togethercomputer/m2-bert-80M-8k-retrieval"
    • "model_name": "togethercomputer/m2-bert-80M-32k-retrieval"

Example: { "name": "Embedder", "type": "embed", "subtype": "<subtype>", "settings": { "model_name": "<model-name>" } }

Unstructured API MCP Server_delete_workflow

Delete a specific workflow.

Args: workflow_id: ID of the workflow to delete Returns: String containing the response from the workflow deletion
Unstructured API MCP Server_list_jobs
List jobs via the Unstructured API. Args: workflow_id: Optional workflow ID to filter by status: Optional job status to filter by Returns: String containing the list of jobs
Unstructured API MCP Server_get_job_info

Get detailed information about a specific job.

Args: job_id: ID of the job to get information for Returns: String containing the job information
Unstructured API MCP Server_cancel_job

Delete a specific job.

Args: job_id: ID of the job to cancel Returns: String containing the response from the job cancellation
replicate-flux-mcp_generate_image

Generate an image from a text prompt using Flux Schnell model

replicate-flux-mcp_generate_multiple_images

Generate multiple images from an array of prompts using Flux Schnell model

replicate-flux-mcp_generate_image_variants

Generate multiple variants of the same image from a single prompt

replicate-flux-mcp_generate_svg

Generate an SVG from a text prompt using Recraft model

replicate-flux-mcp_get_prediction

Get details of a specific prediction by ID

replicate-flux-mcp_create_prediction

Generate an prediction from a text prompt using Flux Schnell model

replicate-flux-mcp_prediction_list

Get a list of recent predictions from Replicate

Chain of Draft Thinking_chain-of-draft
# Chain of Draft (CoD): Systematic Reasoning Tool

REQUIRED PARAMETERS - ALL MUST BE PROVIDED:

  1. reasoning_chain: string[] - At least one reasoning step
  2. next_step_needed: boolean - Whether another iteration is needed
  3. draft_number: number - Current draft number ( 1)
  4. total_drafts: number - Total planned drafts ( draft_number)

Optional parameters only required based on context:

  • is_critique?: boolean - If true, critique_focus is required
  • critique_focus?: string - Required when is_critique=true
  • revision_instructions?: string - Recommended for revision steps
  • step_to_review?: number - Specific step index to review
  • is_final_draft?: boolean - Marks final iteration

    Purpose:

    Enhances problem-solving through structured, iterative critique and revision. Chain of Draft is an advanced reasoning tool that enhances problem-solving through structured, iterative critique and revision. Unlike traditional reasoning approaches, CoD mimics the human drafting process to improve clarity, accuracy, and robustness of conclusions.

    When to Use This Tool:

    • Complex Problem-Solving: Tasks requiring detailed, multi-step analysis with high accuracy demands
    • Critical Reasoning: Problems where logical flow and consistency are essential
    • Error-Prone Scenarios: Questions where initial reasoning might contain mistakes or oversight
    • Multi-Perspective Analysis: Cases benefiting from examining a problem from different angles
    • Self-Correction Needs: When validation and refinement of initial thoughts are crucial
    • Detailed Solutions: Tasks requiring comprehensive explanations with supporting evidence
    • Mathematical or Logical Puzzles: Problems with potential for calculation errors or logical gaps
    • Nuanced Analysis: Situations with subtle distinctions that might be missed in a single pass

    Key Capabilities:

    • Iterative Improvement: Systematically refines reasoning through multiple drafts
    • Self-Critique: Critically examines previous reasoning to identify flaws and opportunities
    • Focused Revision: Targets specific aspects of reasoning in each iteration
    • Perspective Flexibility: Can adopt different analytical viewpoints during critique
    • Progressive Refinement: Builds toward optimal solutions through controlled iterations
    • Context Preservation: Maintains understanding across multiple drafts and revisions
    • Adaptable Depth: Adjusts the number of iterations based on problem complexity
    • Targeted Improvements: Addresses specific weaknesses in each revision cycle

    Parameters Explained:

    • reasoning_chain: Array of strings representing your current reasoning steps. Each element should contain a clear, complete thought that contributes to the overall analysis.
    • next_step_needed: Boolean flag indicating whether additional critique or revision is required. Set to true until the final, refined reasoning chain is complete.
    • draft_number: Integer tracking the current iteration (starting from 1). Increments with each critique or revision.
    • total_drafts: Estimated number of drafts needed for completion. This can be adjusted as the solution evolves.
    • is_critique: Boolean indicating the current mode:
      • true = Evaluating previous reasoning
      • false = Implementing revisions
    • critique_focus: (Required when is_critique=true) Specific aspect being evaluated, such as:
      • "logical_consistency": Checking for contradictions or flaws in reasoning
      • "factual_accuracy": Verifying correctness of facts and calculations
      • "completeness": Ensuring all relevant aspects are considered
      • "clarity": Evaluating how understandable the reasoning is
      • "relevance": Assessing if reasoning directly addresses the problem
    • revision_instructions: (Required when is_critique=false) Detailed guidance for improving the reasoning based on the preceding critique.
    • step_to_review: (Optional) Zero-based index of the specific reasoning step being critiqued or revised. When omitted, applies to the entire chain.
    • is_final_draft: (Optional) Boolean indicating whether this is the final iteration of reasoning.

    Best Practice Workflow:

    1. Start with Initial Draft: Begin with your first-pass reasoning and set a reasonable total_drafts (typically 3-5).
    2. Alternate Critique and Revision: Use is_critique=true to evaluate reasoning, then is_critique=false to implement improvements.
    3. Focus Each Critique: Choose a specific critique_focus for each evaluation cycle rather than attempting to address everything at once.
    4. Provide Detailed Revision Guidance: Include specific, actionable revision_instructions based on each critique.
    5. Target Specific Steps When Needed: Use step_to_review to focus on particular reasoning steps that need improvement.
    6. Adjust Total Drafts As Needed: Modify total_drafts based on problem complexity and progress.
    7. Mark Completion Appropriately: Set next_step_needed=false only when the reasoning chain is complete and satisfactory.
    8. Aim for Progressive Improvement: Each iteration should measurably improve the reasoning quality.

    Example Application:

    • Initial Draft: First-pass reasoning about a complex problem
    • Critique #1: Focus on logical consistency and identify contradictions
    • Revision #1: Address logical flaws found in the critique
    • Critique #2: Focus on completeness and identify missing considerations
    • Revision #2: Incorporate overlooked aspects and strengthen reasoning
    • Final Critique: Holistic review of clarity and relevance
    • Final Revision: Refine presentation and ensure direct addressing of the problem

    Chain of Draft is particularly effective when complex reasoning must be broken down into clear steps, analyzed from multiple perspectives, and refined through systematic critique. By mimicking the human drafting process, it produces more robust and accurate reasoning than single-pass approaches.

AgentQL MCP Server_extract-web-data

Extracts structured data as JSON from a web page given a URL using a Natural Language description of the data.

Opik MCP Server_create-project

Create a new project/workspace

Opik MCP Server_list-prompts

Get a list of Opik prompts

Opik MCP Server_create-prompt

Create a new prompt

Opik MCP Server_create-prompt-version

Create a new version of a prompt

Opik MCP Server_get-prompt-by-id

Get a single prompt by ID

Opik MCP Server_update-prompt

Update a prompt

Opik MCP Server_delete-prompt

Delete a prompt

Opik MCP Server_list-projects

Get a list of projects/workspaces

Opik MCP Server_get-project-by-id

Get a single project by ID

Opik MCP Server_update-project

Update a project

Opik MCP Server_delete-project

Delete a project

Opik MCP Server_list-traces

Get a list of traces

Opik MCP Server_get-trace-by-id

Get a single trace by ID

Opik MCP Server_get-trace-stats

Get statistics for traces

Opik MCP Server_get-metrics

Get metrics data

Opik MCP Server_get-server-info

Get information about the Opik server configuration

Opik MCP Server_get-opik-help

Get contextual help about Opik Comet's capabilities

Opik MCP Server_get-opik-examples

Get examples of how to use Opik Comet's API for specific tasks

Opik MCP Server_get-opik-tracing-info

Get information about Opik's tracing capabilities and how to use them

mcp-brave-search_brave_web_search

Performs a web search using the Brave Search API, ideal for general queries, news, articles, and online content. Use this for broad information gathering, recent events, or when you need diverse web sources. Supports pagination, content filtering, and freshness controls. Maximum 20 results per request, with offset for pagination.

mcp-brave-search_brave_local_search

Searches for local businesses and places using Brave's Local Search API. Best for queries related to physical locations, businesses, restaurants, services, etc. Returns detailed information including:

  • Business names and addresses
  • Ratings and review counts
  • Phone numbers and opening hours Use this when the query implies 'near me' or mentions specific locations. Automatically falls back to web search if no local results are found.
cloudflare-browser-rendering-mcp_fetch_page

Fetches and processes a web page for LLM context

cloudflare-browser-rendering-mcp_search_documentation

Searches Cloudflare documentation and returns relevant content

cloudflare-browser-rendering-mcp_extract_structured_content

Extracts structured content from a web page using CSS selectors

cloudflare-browser-rendering-mcp_summarize_content

Summarizes web content for more concise LLM context

cloudflare-browser-rendering-mcp_take_screenshot

Takes a screenshot of a web page and returns it as an image

EDUCHAIN Agent Kit_get_token_price

Get the current price of a token on SailFish DEX

EDUCHAIN Agent Kit_get_token_info

Get detailed information about a token on SailFish DEX

EDUCHAIN Agent Kit_get_pool_info

Get detailed information about a liquidity pool on SailFish DEX

EDUCHAIN Agent Kit_get_top_tokens

Get a list of top tokens by TVL on SailFish DEX

EDUCHAIN Agent Kit_get_top_pools

Get a list of top liquidity pools by TVL on SailFish DEX

EDUCHAIN Agent Kit_get_total_tvl

Get the total value locked (TVL) in SailFish DEX

EDUCHAIN Agent Kit_get_24h_volume

Get the 24-hour trading volume on SailFish DEX

EDUCHAIN Agent Kit_get_token_historical_data

Get historical data for a token on SailFish DEX

EDUCHAIN Agent Kit_get_pool_historical_data

Get historical data for a liquidity pool on SailFish DEX

EDUCHAIN Agent Kit_get_edu_balance

Get the EDU balance of a wallet address

EDUCHAIN Agent Kit_get_token_balance

Get the token balance of a wallet address with USD value using SailFish as price oracle

EDUCHAIN Agent Kit_get_multiple_token_balances

Get multiple token balances for a wallet address with USD values using SailFish as price oracle

EDUCHAIN Agent Kit_get_nft_balance

Get the NFT balance of a wallet address for a specific NFT collection

EDUCHAIN Agent Kit_get_wallet_overview

Get an overview of a wallet including EDU, tokens, and NFTs

EDUCHAIN Agent Kit_set_rpc_url

Set the RPC URL for blockchain interactions

EDUCHAIN Agent Kit_get_rpc_url

Get the current RPC URL used for blockchain interactions

EDUCHAIN Agent Kit_send_edu

Send EDU native token to another wallet address

EDUCHAIN Agent Kit_get_wallet_address_from_private_key

Get wallet address from private key with proper checksum formatting

EDUCHAIN Agent Kit_send_erc20_token

Send ERC20 token to another wallet address

EDUCHAIN Agent Kit_get_swap_quote

Get a quote for swapping tokens on SailFish DEX

EDUCHAIN Agent Kit_swap_tokens

Swap tokens on SailFish DEX (token to token)

EDUCHAIN Agent Kit_swap_edu_for_tokens

Swap EDU for tokens on SailFish DEX

EDUCHAIN Agent Kit_swap_tokens_for_edu

Swap tokens for EDU on SailFish DEX

EDUCHAIN Agent Kit_get_external_market_data

Get external market data for EDU from centralized exchanges

EDUCHAIN Agent Kit_check_arbitrage_opportunities

Check for arbitrage opportunities between centralized exchanges and SailFish DEX

EDUCHAIN Agent Kit_update_external_market_config

Update the configuration for external market data API

EDUCHAIN Agent Kit_get_external_market_config

Get the current configuration for external market data API

EDUCHAIN Agent Kit_wrap_edu

Wrap EDU to WEDU (Wrapped EDU)

EDUCHAIN Agent Kit_unwrap_wedu

Unwrap WEDU (Wrapped EDU) to EDU

TranscriptionTools MCP Server_repair_text

Analyzes and repairs transcription errors with greater than 90% confidence

TranscriptionTools MCP Server_get_repair_log

Retrieves detailed analysis log from previous repair operation

TranscriptionTools MCP Server_format_transcript

Transforms timestamped transcripts into naturally formatted text

TranscriptionTools MCP Server_summary_text

Generates intelligent summaries using ACE cognitive methodology

basic-memory_delete_note

Delete a note by title or permalink

basic-memory_read_content

Read a file's raw content by path or permalink

basic-memory_build_context

Build context from a memory:// URI to continue conversations naturally.

Use this to follow up on previous discussions or explore related topics. Timeframes support natural language like: - "2 days ago" - "last week" - "today" - "3 months ago" Or standard formats like "7d", "24h"
basic-memory_recent_activity

Get recent activity from across the knowledge base.

Timeframe supports natural language formats like: - "2 days ago" - "last week" - "yesterday" - "today" - "3 weeks ago" Or standard formats like "7d"
basic-memory_search

Search across all content in basic-memory, including documents and entities

basic-memory_read_note

Read a markdown note by title or permalink.

basic-memory_write_note

Create or update a markdown note. Returns a markdown formatted summary of the semantic content.

basic-memory_canvas

Create an Obsidian canvas file to visualize concepts and connections.

basic-memory_project_info

Get information and statistics about the current Basic Memory project.

Make MCP Server_run_scenario_8632

Scenario D - Subscenario

Make MCP Server_run_scenario_11704

Scenario Inputs All Types

Make MCP Server_run_scenario_11707

Scenario Inputs: Array of Collections

Make MCP Server_run_scenario_11652

Tool: Add to Inventory (Add a new item to the inventory.)

Make MCP Server_run_scenario_11422

Tool: List Inventory (Lists items in inventory.)

Make MCP Server_run_scenario_2361

Dynamic Connections Testing

Github Project Manager_add_issue_comment

Add a comment to an existing issue

Github Project Manager_update_project_item

Move an item between columns in a GitHub project

Github Project Manager_create_issue

Create a new issue in a GitHub repository

Github Project Manager_update_issue

Update an existing issue in a GitHub repository

Github Project Manager_list_issues

List issues in a GitHub repository with filtering options

Github Project Manager_get_issue

Get details of a specific issue in a GitHub repository.

Github Project Manager_create_project

Create a new GitHub project board

Github Project Manager_add_project_item

Add an issue or pull request to a GitHub project

Github Project Manager_list_project_items

List items in a GitHub project

Github Project Manager_create_pull_request

Create a new pull request in a GitHub repository

Github Project Manager_update_pull_request

Update an existing pull request in a GitHub repository

Github Project Manager_list_pull_requests

List pull requests in a GitHub repository with filtering options

Github Project Manager_get_pull_request

Get details of a specific pull request in a GitHub repository

Github Project Manager_merge_pull_request

Merge a pull request

Github Project Manager_is_pull_request_merged

Check if a pull request has been merged

Github Project Manager_create_pull_request_review

Create a review for a pull request

Github Project Manager_list_pull_request_reviews

List reviews for a pull request

Github Project Manager_create_pull_request_review_comment

Create a review comment for a pull request

Github Project Manager_list_pull_request_review_comments

List review comments for a pull request

Github Project Manager_request_reviewers

Request reviewers for a pull request

Github Project Manager_remove_requested_reviewers

Remove requested reviewers from a pull request

Github Project Manager_update_pull_request_branch

Update a pull request branch with the latest upstream changes

Glif_run_glif

Run a glif with the specified ID and inputs

Glif_list_featured_glifs

Get a curated list of featured glifs

Glif_glif_info

Get detailed information about a glif including input fields

Glif_my_glifs

Get a list of your glifs

Glif_my_glif_user_info

Get detailed information about your user account, recent glifs, and recent runs

XTQuantAI_get_trading_dates-
XTQuantAI_get_stock_list-
XTQuantAI_get_instrument_detail-
XTQuantAI_get_history_market_data-
XTQuantAI_get_latest_market_data-
XTQuantAI_get_full_market_data
XTQuantAI_create_chart_panel-
XTQuantAI_create_custom_layout-
Vectorize_retrieve

Retrieve documents from a Vectorize pipeline.

Vectorize_extract

Perform text extraction and chunking on a document.

Vectorize_deep-research

Generate a deep research on a Vectorize pipeline.

image-tools-mcp_get_image_size

Get the size of an image from URL

image-tools-mcp_get_local_image_size

Get the size of a local image

image-tools-mcp_compress_image_from_url

Compress a single image from URL using TinyPNG API (only supports image files, not folders)

image-tools-mcp_compress_local_image

Compress a single local image file using TinyPNG API (only supports image files, not folders)

cryptopanic-mcp-server_get_crypto_news-
adx-mcp-server_execute_query

Executes a Kusto Query Language (KQL) query against the configured Azure Data Explorer database and returns the results as a list of dictionaries.

adx-mcp-server_list_tables

Retrieves a list of all tables available in the configured Azure Data Explorer database, including their names, folders, and database associations.

adx-mcp-server_get_table_schema

Retrieves the schema information for a specified table in the Azure Data Explorer database, including column names, data types, and other schema-related metadata.

adx-mcp-server_sample_table_data

Retrieves a random sample of rows from the specified table in the Azure Data Explorer database. The sample_size parameter controls how many rows to return (default: 10).

Memory Bank MCP_initialize_memory_bank

Initialize a Memory Bank in the specified directory

Memory Bank MCP_set_memory_bank_path

Set a custom path for the Memory Bank

Memory Bank MCP_debug_mcp_config

Debug the current MCP configuration

Memory Bank MCP_read_memory_bank_file

Read a file from the Memory Bank

Memory Bank MCP_write_memory_bank_file

Write to a Memory Bank file

Memory Bank MCP_list_memory_bank_files

List Memory Bank files

Memory Bank MCP_get_memory_bank_status

Check Memory Bank status

Memory Bank MCP_migrate_file_naming

Migrate Memory Bank files from camelCase to kebab-case naming convention

Memory Bank MCP_track_progress

Track progress and update Memory Bank files

Memory Bank MCP_update_active_context

Update the active context file

Memory Bank MCP_log_decision

Log a decision in the decision log

Memory Bank MCP_switch_mode

Switches to a specific mode

Memory Bank MCP_get_current_mode

Gets information about the current mode

Memory Bank MCP_process_umb_command

Processes the Update Memory Bank (UMB) command

Memory Bank MCP_complete_umb

Completes the Update Memory Bank (UMB) process

Gitingest-MCP_git_summary
Get a summary of a GitHub repository that includes - Repo name, - Files in repo - Number of tokens in repo - Summary from the README.md Args: owner: The GitHub organization or username repo: The repository name branch: Optional branch name (default: None)
Gitingest-MCP_git_tree
Get the tree structure of a GitHub repository Args: owner: The GitHub organization or username repo: The repository name branch: Optional branch name (default: None)
Gitingest-MCP_git_files
Get the content of specific files from a GitHub repository Args: owner: The GitHub organization or username repo: The repository name file_paths: List of paths to files within the repository branch: Optional branch name (default: None)
DuckDuckGo MCP Server_duckduckgo_web_search

Performs a web search using the DuckDuckGo, ideal for general queries, news, articles, and online content. Use this for broad information gathering, recent events, or when you need diverse web sources. Supports content filtering and region-specific searches. Maximum 20 results per request.

Git Auto Commit MCP Server_git-changes-commit-message

Analyzes current git changes and provides a commit message

MCP Create Server_create-server-from-template

Create a new MCP server from a template.

TypeScript:

import { Server } from "@modelcontextprotocol/sdk/server/index.js"; import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; import { CallToolRequestSchema, ListToolsRequestSchema } from "@modelcontextprotocol/sdk/types.js"; const server = new Server({ name: "dynamic-test-server", version: "1.0.0" }, { capabilities: { tools: {} } }); // server.setRequestHandler(ListToolsRequestSchema, async () => { return { tools: [{ name: "echo", description: "Echo back a message", inputSchema: { type: "object", properties: { message: { type: "string" } }, required: ["message"] } }] }; }); server.setRequestHandler(CallToolRequestSchema, async (request) => { if (request.params.name === "echo") { // TypeScript const message = request.params.arguments.message as string; // any : const message: any = request.params.arguments.message; return { content: [ { type: "text", text: `Echo: ${message}` } ] }; } throw new Error("Tool not found"); }); // Server startup const transport = new StdioServerTransport(); server.connect(transport);

Python:

import asyncio from mcp.server import Server from mcp.server.stdio import stdio_server app = Server("dynamic-test-server") @app.list_tools() async def list_tools(): return [ { "name": "echo", "description": "Echo back a message", "inputSchema": { "type": "object", "properties": { "message": {"type": "string"} }, "required": ["message"] } } ] @app.call_tool() async def call_tool(name, arguments): if name == "echo": return [{"type": "text", "text": f"Echo: {arguments.get('message')}"}] raise ValueError(f"Tool not found: {name}") async def main(): async with stdio_server() as streams: await app.run( streams[0], streams[1], app.create_initialization_options() ) if __name__ == "__main__": asyncio.run(main())
  • TypeScriptas string const value: string = request.params.arguments.someValue
  • interface type
MCP Create Server_execute-tool

Execute a tool on a server

MCP Create Server_get-server-tools

Get the tools available on a server

MCP Create Server_delete-server

Delete a server

MCP Create Server_list-servers

List all running servers

Redash MCP Server_list-queries

List all available queries in Redash

Redash MCP Server_get-query

Get details of a specific query

Redash MCP Server_create-query

Create a new query in Redash

Redash MCP Server_update-query

Update an existing query in Redash

Redash MCP Server_archive-query

Archive (soft-delete) a query in Redash

Redash MCP Server_list-data-sources

List all available data sources in Redash

Redash MCP Server_execute-query

Execute a Redash query and return results

Redash MCP Server_list-dashboards

List all available dashboards in Redash

Redash MCP Server_get-dashboard

Get details of a specific dashboard

Redash MCP Server_get-visualization

Get details of a specific visualization

Meme MCP Server_generateMeme

Generate a meme image from Imgflip using the numeric template id and text

mcp-omnisearch_tavily_search

Search the web using Tavily Search API. Best for factual queries requiring reliable sources and citations. Provides high-quality results for technical, scientific, and academic topics. Use when you need verified information with strong citation support.

mcp-omnisearch_brave_search

Privacy-focused search engine with good coverage of technical topics. Features independent index and strong privacy protections. Best for technical documentation, developer resources, and privacy-sensitive queries.

mcp-omnisearch_kagi_search

High-quality search results with minimal advertising influence, focused on authoritative sources. Features strong privacy protection and access to specialized knowledge indexes. Best for research, technical documentation, and finding high-quality content without SEO manipulation.

mcp-omnisearch_perplexity_search

AI-powered response generation combining real-time web search with advanced language models. Best for complex queries requiring reasoning and synthesis across multiple sources. Features contextual memory for follow-up questions.

mcp-omnisearch_kagi_fastgpt_search

Quick AI-generated answers with citations, optimized for rapid response (900ms typical start time). Runs full search underneath for enriched answers.

mcp-omnisearch_jina_reader_process

Convert any URL to clean, LLM-friendly text using Jina Reader API

mcp-omnisearch_kagi_summarizer_process

Instantly summarizes content of any type and length from URLs. Supports pages, videos, and podcasts with transcripts. Best for quick comprehension of long-form content and multimedia resources.

mcp-omnisearch_tavily_extract_process

Extract web page content from single or multiple URLs using Tavily Extract. Efficiently converts web content into clean, processable text with configurable extraction depth and optional image extraction. Returns both combined and individual URL content. Best for content analysis, data collection, and research.

mcp-omnisearch_firecrawl_scrape_process

Extract clean, LLM-ready data from single URLs with enhanced formatting options using Firecrawl. Efficiently converts web content into markdown, plain text, or structured data with configurable extraction options. Best for content analysis, data collection, and AI training data preparation.

mcp-omnisearch_firecrawl_crawl_process

Deep crawling of all accessible subpages on a website with configurable depth limits using Firecrawl. Efficiently discovers and extracts content from multiple pages within a domain. Best for comprehensive site analysis, content indexing, and data collection from entire websites.

mcp-omnisearch_firecrawl_map_process

Fast URL collection from websites for comprehensive site mapping using Firecrawl. Efficiently discovers all accessible URLs within a domain without extracting content. Best for site auditing, URL discovery, and preparing for targeted content extraction.

mcp-omnisearch_firecrawl_extract_process

Structured data extraction with AI using natural language prompts via Firecrawl. Extracts specific information from web pages based on custom extraction instructions. Best for targeted data collection, information extraction, and converting unstructured web content into structured data.

mcp-omnisearch_firecrawl_actions_process

Support for page interactions (clicking, scrolling, etc.) before extraction for dynamic content using Firecrawl. Enables extraction from JavaScript-heavy sites, single-page applications, and content behind user interactions. Best for accessing content that requires navigation, form filling, or other interactions.

mcp-omnisearch_jina_grounding_enhance

Real-time fact verification against web knowledge. Reduces hallucinations and improves content integrity through statement verification.

mcp-omnisearch_kagi_enrichment_enhance

Provides supplementary content from specialized indexes (Teclis for web, TinyGem for news). Ideal for discovering non-mainstream results and enriching content with specialized knowledge.

MCP Server Template_sample-tool

A sample tool for demonstration purposes

Databutton MCP Server_submit_app_requirements

Submit app requirements

Unofficial dubco-mcp-server_create_link

Create a new short link on dub.co, asking the user which domain to use

Unofficial dubco-mcp-server_update_link

Update an existing short link on dub.co

Unofficial dubco-mcp-server_delete_link

Delete a short link on dub.co

Deskaid_deskaid
This is a multipurpose tool that supports the following subcommands: ## ReadFile file_path offset? limit? Reads a file from the local filesystem. The file_path parameter must be an absolute path, not a relative path. By default, it reads up to ${MAX_LINES_TO_READ} lines starting from the beginning of the file. You can optionally specify a line offset and limit (especially handy for long files), but it's recommended to read the whole file by not providing these parameters. Any lines longer than ${MAX_LINE_LENGTH} characters will be truncated. For image files, the tool will display the image for you. ## WriteFile file_path content Write a file to the local filesystem. Overwrites the existing file if there is one. Before using this tool: 1. Use the ReadFile tool to understand the file's contents and context 2. Directory Verification (only applicable when creating new files): - Use the LS tool to verify the parent directory exists and is the correct location ## EditFile file_path old_string new_string This is a tool for editing files. For larger edits, use the Write tool to overwrite files. Before using this tool: 1. Use the View tool to understand the file's contents and context 2. Verify the directory path is correct (only applicable when creating new files): - Use the LS tool to verify the parent directory exists and is the correct location To make a file edit, provide the following: 1. file_path: The absolute path to the file to modify (must be absolute, not relative) 2. old_string: The text to replace (must be unique within the file, and must match the file contents exactly, including all whitespace and indentation) 3. new_string: The edited text to replace the old_string The tool will replace ONE occurrence of old_string with new_string in the specified file. CRITICAL REQUIREMENTS FOR USING THIS TOOL: 1. UNIQUENESS: The old_string MUST uniquely identify the specific instance you want to change. This means: - Include AT LEAST 3-5 lines of context BEFORE the change point - Include AT LEAST 3-5 lines of context AFTER the change point - Include all whitespace, indentation, and surrounding code exactly as it appears in the file 2. SINGLE INSTANCE: This tool can only change ONE instance at a time. If you need to change multiple instances: - Make separate calls to this tool for each instance - Each call must uniquely identify its specific instance using extensive context 3. VERIFICATION: Before using this tool: - Check how many instances of the target text exist in the file - If multiple instances exist, gather enough context to uniquely identify each one - Plan separate tool calls for each instance WARNING: If you do not follow these requirements: - The tool will fail if old_string matches multiple locations - The tool will fail if old_string doesn't match exactly (including whitespace) - You may change the wrong instance if you don't include enough context When making edits: - Ensure the edit results in idiomatic, correct code - Do not leave the code in a broken state - Always use absolute file paths (starting with /) If you want to create a new file, use: - A new file path, including dir name if needed - An empty old_string - The new file's contents as new_string Remember: when making multiple file edits in a row to the same file, you should prefer to send all edits in a single message with multiple calls to this tool, rather than multiple messages with a single call each. ## LS directory_path Lists files and directories in a given path. The path parameter must be an absolute path, not a relative path. You should generally prefer the Glob and Grep tools, if you know which directories to search. Args: ctx: The MCP context command: The subcommand to execute (ReadFile, WriteFile, EditFile, LS) file_path: The path to the file or directory to operate on content: Content for WriteFile command old_string: String to replace for EditFile command new_string: Replacement string for EditFile command offset: Line offset for ReadFile command limit: Line limit for ReadFile command
Claude Code MCP_bash

Execute a shell command

Claude Code MCP_readFile

Read a file from the local filesystem

Claude Code MCP_listFiles

Lists files and directories in a given path

Claude Code MCP_searchGlob

Search for files matching a pattern

Claude Code MCP_grep

Search for text in files

Claude Code MCP_think

A tool for thinking through complex problems

Claude Code MCP_codeReview

Review code for bugs, security issues, and best practices

Claude Code MCP_editFile

Create or edit a file

Cryo MCP Server_list_datasets

Return a list of all available cryo datasets

Cryo MCP Server_query_dataset
Query a cryo dataset and return the results Args: dataset: The name of the dataset to query (e.g., 'logs', 'transactions') blocks: Block range specification as a string (e.g., '1000:1010') start_block: Start block number as integer (alternative to blocks) end_block: End block number as integer (alternative to blocks) use_latest: If True, query the latest block blocks_from_latest: Number of blocks before the latest to include (e.g., 10 = latest-10 to latest) contract: Contract address to filter by output_format: Output format (json, csv, parquet) include_columns: Columns to include alongside the defaults exclude_columns: Columns to exclude from the defaults Returns: The dataset results
Cryo MCP Server_lookup_dataset
Look up a specific dataset and return detailed information about it Args: name: The name of the dataset to look up sample_start_block: Optional start block for sample data (integer) sample_end_block: Optional end block for sample data (integer) use_latest_sample: If True, use the latest block for sample data sample_blocks_from_latest: Number of blocks before the latest to include in sample Returns: Detailed information about the dataset including schema and available fields
Cryo MCP Server_get_transaction_by_hash
Get detailed information about a transaction by its hash Args: tx_hash: The transaction hash to look up Returns: Detailed information about the transaction
Cryo MCP Server_get_latest_ethereum_block
Get information about the latest Ethereum block Returns: Information about the latest block including block number
Targetprocess MCP Server_search_entities

Search Target Process entities with powerful filtering capabilities and preset filters for common scenarios

Targetprocess MCP Server_get_entity

Get details of a specific Target Process entity

Targetprocess MCP Server_create_entity

Create a new Target Process entity

Targetprocess MCP Server_update_entity

Update an existing Target Process entity

Targetprocess MCP Server_inspect_object

Inspect Target Process objects and properties through the API. This tool also provides API discovery capabilities through error messages when used with unsupported entity types.

OKX MCP Server_get_price

Get latest price for an OKX instrument

OKX MCP Server_get_candlesticks

Get candlestick data for an OKX instrument

MCP Memory LibSQL_create_relations

Create relations between entities

MCP Memory LibSQL_delete_entity

Delete an entity and all its associated data (observations and relations)

MCP Memory LibSQL_delete_relation

Delete a specific relation between entities

MCP Memory LibSQL_create_entities

Create new entities with observations and optional embeddings

MCP Memory LibSQL_search_nodes

Search for entities and their relations using text or vector similarity

MCP Memory LibSQL_read_graph

Get recent entities and their relations

Higress AI-Search MCP Server_ai_search
Enhance AI model responses with real-time search results from search engines. This tool sends a query to Higress, which integrates with various search engines to provide up-to-date information: **Internet Search**: Google, Bing, Quark - for general web information **Academic Search**: Arxiv - for scientific papers and research **Internal Knowledge Search**: Company policies, Product documentation, Technical specifications Args: query: The user's question or search query Returns: The enhanced AI response with search results incorporated
Keycloak MCP Server_create-user

Create a new user in a specific realm

Keycloak MCP Server_delete-user

Delete a user from a specific realm

Keycloak MCP Server_list-realms

List all available realms

Keycloak MCP Server_list-users

List users in a specific realm

Git File Forensics MCP_track_file_versions

Track complete version history of a specific file, including renames and moves

Git File Forensics MCP_analyze_file_diff

Analyze specific changes between any two versions of a file

Git File Forensics MCP_analyze_file_context

Analyze broader context of file changes in a specific commit

Git File Forensics MCP_analyze_file_semantics

Analyze semantic changes and patterns in file history

File Operations MCP Server_copy_file

Copy a file to a new location

File Operations MCP Server_read_file

Read the contents of a file

File Operations MCP Server_write_file

Write content to a file

File Operations MCP Server_make_directory

Create a new directory

File Operations MCP Server_remove_directory

Remove a directory

File Operations MCP Server_list_directory

List contents of a directory with detailed metadata

File Operations MCP Server_copy_directory

Copy a directory and its contents to a new location

File Operations MCP Server_watch_directory

Watch a directory for changes

File Operations MCP Server_unwatch_directory

Stop watching a directory

File Operations MCP Server_is_watching

Check if a path is currently being watched

File Operations MCP Server_get_changes

Get list of tracked changes

File Operations MCP Server_clear_changes

Clear all tracked changes

DocuMind MCP Server_evaluate_readme

README

MCP Substack Server_download_substack

Download and parse content from a Substack post

GCP MCP_run-gcp-code

Run GCP code

GCP MCP_list-projects

List all GCP projects accessible with current credentials

GCP MCP_select-project

Selects GCP project to use for subsequent interactions

GCP MCP_get-billing-info

Get billing information for the current project

GCP MCP_get-cost-forecast

Get cost forecast for the current project

GCP MCP_get-billing-budget

Get billing budgets for the current project

GCP MCP_list-gke-clusters

List all GKE clusters in the current project

GCP MCP_list-sql-instances

List all Cloud SQL instances in the current project

GCP MCP_get-logs

Get Cloud Logging entries for the current project

Vercel MCP_getDeployments

Lists deployments

Vercel MCP_deleteDeployment

Deletes a deployment

Vercel MCP_getDeploymentEvents

Gets deployment events by deployment ID and build ID

Vercel MCP_getDeployment

Gets a deployment by ID or URL

Vercel MCP_cancelDeployment

Cancels a deployment

Vercel MCP_listDeploymentFiles

Lists deployment files

Vercel MCP_getDeploymentFileContents

Gets deployment file contents

Claude Desktop Commander MCP_execute_command

Execute a terminal command with timeout. Command will continue running in background if it doesn't complete within timeout.

Claude Desktop Commander MCP_read_output

Read new output from a running terminal session.

Claude Desktop Commander MCP_force_terminate

Force terminate a running terminal session.

Claude Desktop Commander MCP_list_sessions

List all active terminal sessions.

Claude Desktop Commander MCP_list_processes

List all running processes. Returns process information including PID, command name, CPU usage, and memory usage.

Claude Desktop Commander MCP_kill_process

Terminate a running process by PID. Use with caution as this will forcefully terminate the specified process.

Claude Desktop Commander MCP_block_command

Add a command to the blacklist. Once blocked, the command cannot be executed until unblocked.

Claude Desktop Commander MCP_unblock_command

Remove a command from the blacklist. Once unblocked, the command can be executed normally.

Claude Desktop Commander MCP_list_blocked_commands

List all currently blocked commands.

Claude Desktop Commander MCP_read_file

Read the complete contents of a file from the file system. Handles various text encodings and provides detailed error messages if the file cannot be read. Only works within allowed directories.

Claude Desktop Commander MCP_read_multiple_files

Read the contents of multiple files simultaneously. Each file's content is returned with its path as a reference. Failed reads for individual files won't stop the entire operation. Only works within allowed directories.

Claude Desktop Commander MCP_write_file

Completely replace file contents. Best for large changes (>20% of file) or when edit_block fails. Use with caution as it will overwrite existing files. Only works within allowed directories.

Claude Desktop Commander MCP_create_directory

Create a new directory or ensure a directory exists. Can create multiple nested directories in one operation. Only works within allowed directories.

Claude Desktop Commander MCP_list_directory

Get a detailed listing of all files and directories in a specified path. Results distinguish between files and directories with [FILE] and [DIR] prefixes. Only works within allowed directories.

Claude Desktop Commander MCP_move_file

Move or rename files and directories. Can move files between directories and rename them in a single operation. Both source and destination must be within allowed directories.

Claude Desktop Commander MCP_search_files

Recursively search for files and directories matching a pattern. Searches through all subdirectories from the starting path. Only searches within allowed directories.

Claude Desktop Commander MCP_get_file_info

Retrieve detailed metadata about a file or directory including size, creation time, last modified time, permissions, and type. Only works within allowed directories.

Claude Desktop Commander MCP_list_allowed_directories

Returns the list of directories that this server is allowed to access.

Claude Desktop Commander MCP_edit_block

Apply surgical text replacements to files. Best for small changes (<20% of file size). Multiple blocks can be used for separate changes. Will verify changes after application. Format: filepath, then <<<<<<< SEARCH, content to find, =======, new content, >>>>>>> REPLACE.

Stealth Browser MCP Server_screenshot

Navigate to a URL and take a screenshot of the webpage

BioMCP_analyze-active-site

Analyze the active site of a protein structure

BioMCP_search-disease-proteins

Search for proteins related to a disease

PDF Extraction MCP Server_extract-pdf-contents

Extract contents from a local PDF file, given page numbers separated in comma. Negative page index number supported.

Inkdrop MCP Server_read-note

Retrieve the complete contents of the note by its ID from the database.

Inkdrop MCP Server_search-notes

List all notes that contain a given keyword. The result does not include entire note bodies as they are truncated in 200 characters. You have to retrieve the full note content by calling read-note. Here are tips to specify keywords effectively:

Use special qualifiers to narrow down results

You can use special qualifiers to get more accurate results. See the qualifiers and their usage examples:

  • book
    book:Blog: Searches for notes in the 'Blog' notebook.
  • tag
    tag:JavaScript: Searches for all notes having the 'JavaScript' tag. Read more about tags.
  • status
    status:onHold: Searches for all notes with the 'On hold' status. Read more about statuses.
  • title
    title:"JavaScript setTimeout": Searches for the note with the specified title.
  • body
    body:KEYWORD: Searches for a specific word in all notes. Equivalent to a global search.

Combine qualifiers

You can combine the filter qualifiers to refine data even more.

Find notes that contain the word 'Hello' and have the 'Issue' tag.

Hello tag:Issue

Find notes that contain the word 'Typescript,' have the 'Contribution' tag, and the 'Completed' status

Typescript tag:Contribution status:Completed

Search for text with spaces

To find the text that includes spaces, put the text into the double quotation marks ("):

"database associations"

Exclude text from search

To exclude text from the search results or ignore a specific qualifier, put the minus sign (-) before it. You can also combine the exclusions. See the examples:

  • -book:Backend "closure functions": Ignores the 'Backend' notebook while searching for the 'closure functions' phrase.
  • -tag:JavaScript: Ignores all notes having the 'JavaScript' tag.
  • -book:Typescript tag:work "Data types": Ignores the 'Typescript' notebook and the 'work' tag while searching for the 'Data types' phrase.
  • -status:dropped title:"Sprint 10.0" debounce: Ignores notes with the 'Dropped' status while searching for the 'debounce' word in the note with the 'Sprint 10.0' title.
  • -"Phrase to ignore" "in the rest of a sentence": Ignores the 'Phrase to ignore' part while searching for 'in the rest of a sentence'.

Note that you can't specify excluding modifiers only without including conditions.

WARNING: Make sure to enter a text to search for after the exclusion modifier.

  • Will work
    -book:Backend "closure functions"
  • Won't work
    -book:Backend. There's no query. Inkdrop doesn't understand what to search for.
Inkdrop MCP Server_create-note

Create a new note in the database

Inkdrop MCP Server_update-note

Update the existing note in the database

Inkdrop MCP Server_list-notebooks

Retrieve a list of all notebooks

Image Generator MCP Server_generate-image

Generate an image using Replicate's Stable Diffusion model

Image Generator MCP Server_save-image

Save a generated image

Image Generator MCP Server_list-saved-images

List all saved images

Notion MCP Server_create-page

Create a new page in a database

Notion MCP Server_update-page

Update an existing page

Notion MCP Server_create-database

Create a new database

Notion MCP Server_update-database

Update an existing database

Notion MCP Server_get-page

Retrieve a page by its ID

Notion MCP Server_get-block-children

Retrieve the children blocks of a block

Notion MCP Server_append-block-children

Append blocks to a parent block

Notion MCP Server_update-block

Update a block's content or archive status

Notion MCP Server_get-block

Retrieve a block by its ID

Notion MCP Server_search

Search Notion for pages or databases

Notion MCP Server_list-databases

List all databases the integration has access to

Notion MCP Server_query-database

Query a database

Youtube MCP Server_DownloadClosedCaptions

Download closed captions from YouTube video.

Manifold Markets MCP Server_place_bet

Place a bet on a market

Manifold Markets MCP Server_cancel_bet

Cancel a limit order bet

Manifold Markets MCP Server_sell_shares

Sell shares in a market

Manifold Markets MCP Server_add_liquidity

Add mana to market liquidity pool

Manifold Markets MCP Server_get_positions

Get user positions across markets

Manifold Markets MCP Server_unresolve_market

Unresolve a previously resolved market

Manifold Markets MCP Server_close_market

Close a market for trading

Manifold Markets MCP Server_add_answer

Add a new answer to a multiple choice market

Manifold Markets MCP Server_follow_market

Follow or unfollow a market

Manifold Markets MCP Server_add_bounty

Add bounty to a market

Manifold Markets MCP Server_award_bounty

Award bounty to a comment

Manifold Markets MCP Server_remove_liquidity

Remove liquidity from market pool

Manifold Markets MCP Server_react

React to a market or comment

Manifold Markets MCP Server_send_mana

Send mana to other users

Manifold Markets MCP Server_create_market

Create a new prediction market

Manifold Markets MCP Server_search_markets

Search for prediction markets with optional filters

Manifold Markets MCP Server_get_market

Get detailed information about a specific market

Manifold Markets MCP Server_get_user

Get user information by username

Nuanced MCP Server_initialize_graph

Initialize a code graph for the given repository path.

Args: repo_path: Path to the repository to analyze

Returns: Success message with information about the initialized graph

Nuanced MCP Server_switch_repository

Switch to a different initialized repository.

Args: repo_path: Path to the repository to switch to

Returns: Success message or error

Nuanced MCP Server_list_repositories

List all initialized repositories.

Returns: List of initialized repositories

Nuanced MCP Server_get_function_call_graph

Get the call graph for a specific function.

Args: file_path: Path to the file containing the function function_name: Name of the function to analyze repo_path: Optional repository path (uses active repository if not specified)

Returns: Information about the function's call graph

Nuanced MCP Server_analyze_dependencies

Find all module or file dependencies in the codebase.

Identifies all function dependencies for a file or module in the active repository. This identifies all modules that depend on the specified module or file.

Args: file_path: Path to a specific file to analyze dependencies for module_name: Name of a module to analyze dependencies for (e.g., 'auth' will match 'app.auth', 'auth.users', etc.)

Returns: A list of all functions and files that depend on the specified module

Nuanced MCP Server_analyze_change_impact

Analyze the impact of changing a specific function.

This tool performs a comprehensive impact analysis to help understand what would be affected if you modify the specified function.

Args: file_path: Path to the file containing the function function_name: Name of the function to analyze

Returns: A detailed analysis of the potential impact of changing the function

Stability AI MCP Server_stability-ai-generate-image

Generate an image of anything based on a provided prompt.

Stability AI MCP Server_stability-ai-generate-image-sd35

Generate an image using Stable Diffusion 3.5 models with advanced configuration options.

Stability AI MCP Server_stability-ai-remove-background

Remove the background from an image.

Stability AI MCP Server_stability-ai-outpaint

Extends an image in any direction while maintaining visual consistency.

Stability AI MCP Server_stability-ai-search-and-replace

Replace objects or elements in an image by describing what to replace and what to replace it with.

Stability AI MCP Server_stability-ai-upscale-fast

Cheap and fast tool to enhance image resolution by 4x.

Stability AI MCP Server_stability-ai-upscale-creative

Enhance image resolution up to 4K using AI with creative interpretation. This tool works best on highly degraded images and performs heavy reimagining. In general, don't use this (expensive) tool unless specifically asked to do so, usually after trying stability-ai-upscale-fast first.

Stability AI MCP Server_stability-ai-control-sketch

Translate hand-drawn sketches to production-grade images.

Stability AI MCP Server_stability-ai-0-list-resources

Use this to check for files before deciding you don't have access to a file or image or resource. It pulls in a list of all of user's available Resources (i.e. image files and their URI's) so we can reference pre-existing images to manipulate or upload to Stability AI.

Stability AI MCP Server_stability-ai-search-and-recolor

Search and recolor object(s) in an image

Stability AI MCP Server_stability-ai-replace-background-and-relight

Replace background and adjust lighting of an image

Stability AI MCP Server_stability-ai-control-style

Generate a new image in the style of a reference image

Stability AI MCP Server_stability-ai-control-structure

Generate a new image while maintaining the structure of a reference image

ArXiv MCP Server_search_papers

Search for papers on arXiv with advanced filtering

ArXiv MCP Server_download_paper

Download a paper and create a resource for it

ArXiv MCP Server_list_papers

List all existing papers available as resources

ArXiv MCP Server_read_paper

Read the full content of a stored paper in markdown format

Shell MCP Server_run_command

Run a shell command

Productboard MCP Server_get_products

Returns detail of all products. This API is paginated and the page limit is always 100

Productboard MCP Server_get_product_detail

Returns detailed information about a specific product

Productboard MCP Server_get_features

Returns a list of all features. This API is paginated and the page limit is always 100

Productboard MCP Server_get_feature_detail

Returns detailed information about a specific feature

Productboard MCP Server_get_components

Returns a list of all components. This API is paginated and the page limit is always 100

Productboard MCP Server_get_component_detail

Returns detailed information about a specific component

Productboard MCP Server_get_feature_statuses

Returns a list of all feature statuses. This API is paginated and the page limit is always 100

Productboard MCP Server_get_notes

Returns a list of all notes

Productboard MCP Server_get_note_detail

Returns detailed information about a specific note

Productboard MCP Server_get_companies

Returns a list of all companies. This API is paginated and the page limit is always 100

Productboard MCP Server_get_company_detail

Returns detailed information about a specific company

Coin MCP Server_listing-coins

Returns a paginated list of all active cryptocurrencies with latest market data

Coin MCP Server_get-coin-info

Get coins' information includes details like logo, description, official website URL, social links, and links to a cryptocurrency's technical documentation.

Coin MCP Server_get-coin-quotes

the latest market quote for 1 or more cryptocurrencies. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call.

Sleep MCP Server_sleep

Wait for a specified duration

PostHog MCP Server_list_posthog_projects

List all available PostHog projects.

PostHog MCP Server_create_posthog_annotation

Create a PostHog annotation.

Args: project_id: The ID of the project as an integer (e.g. 99423) content: The content/text of the annotation date_marker: Optional ISO-8601 timestamp for the annotation (e.g. 2024-03-20T14:15:22Z)

Kintone MCP Server_create_app

kintone

Kintone MCP Server_add_thread_comment-
Kintone MCP Server_update_space_members-
Kintone MCP Server_add_thread-
Kintone MCP Server_update_thread-
Kintone MCP Server_add_guests-
Kintone MCP Server_update_space_guests-
Kintone MCP Server_add_fields

kintone

Kintone MCP Server_deploy_app

kintone

Kintone MCP Server_get_deploy_status

kintone

Kintone MCP Server_update_app_settings

kintone

Kintone MCP Server_get_form_layout

kintone

Kintone MCP Server_update_form_layout

kintone

Kintone MCP Server_get_record

kintone1

Kintone MCP Server_search_records

kintone

Kintone MCP Server_create_record

kintone

Kintone MCP Server_update_record

kintone

Kintone MCP Server_get_apps_info

kintone

Kintone MCP Server_download_file

kintone

Kintone MCP Server_upload_file

kintone

Kintone MCP Server_add_record_comment

kintone

Kintone MCP Server_get_space-
Kintone MCP Server_update_space-
Kintone MCP Server_update_space_body-
Kintone MCP Server_get_space_members-
MCP Notion Server_query_database

Query a database with filters and sorting

MCP Notion Server_search

Search pages and databases

MCP Notion Server_list_databases

List all accessible databases

MCP Notion Server_create_database

Create a new database

MCP Notion Server_create_page

Create a new page

MCP Notion Server_update_page

Update an existing page

MCP Notion Server_append_blocks

Append blocks to a page

MCP Notion Server_delete_blocks

Delete blocks from a page

MCP Notion Server_get_page

Retrieve a page by ID

MCP Notion Server_get_database

Retrieve a database by ID

Solana MCP Server_getSlot

Get the current slot

Solana MCP Server_getBalance

Get balance for a Solana address

Solana MCP Server_getKeypairInfo

Get information about a keypair from its secret key

Solana MCP Server_getAccountInfo

Get detailed account information for a Solana address

Solana MCP Server_transfer

Transfer SOL from your keypair to another address

Deriv API MCP Server_get_active_symbols-
Deriv API MCP Server_get_account_balance-
Appwrite MCP Server_databases_create_document

Create document

Appwrite MCP Server_databases_create_email_attribute

Create email attribute

Appwrite MCP Server_databases_create_enum_attribute

Create enum attribute

Appwrite MCP Server_databases_create_float_attribute

Create float attribute

Appwrite MCP Server_databases_create_index

Create index

Appwrite MCP Server_databases_create_integer_attribute

Create integer attribute

Appwrite MCP Server_users_create

Create user

Appwrite MCP Server_users_create_argon2_user

Create user with Argon2 password

Appwrite MCP Server_users_create_bcrypt_user

Create user with bcrypt password

Appwrite MCP Server_users_create_jwt

Create user JWT

Appwrite MCP Server_users_create_md5_user

Create user with MD5 password

Appwrite MCP Server_users_create_mfa_recovery_codes

Create MFA recovery codes

Appwrite MCP Server_users_create_ph_pass_user

Create user with PHPass password

Appwrite MCP Server_databases_create_ip_attribute

Create IP address attribute

Appwrite MCP Server_users_create_scrypt_modified_user

Create user with Scrypt modified password

Appwrite MCP Server_databases_create_relationship_attribute

Create relationship attribute

Appwrite MCP Server_databases_update_datetime_attribute

Update dateTime attribute

Appwrite MCP Server_databases_update_document

Update document

Appwrite MCP Server_databases_update_email_attribute

Update email attribute

Appwrite MCP Server_users_create_scrypt_user

Create user with Scrypt password

Appwrite MCP Server_users_create_session

Create session

Appwrite MCP Server_users_create_sha_user

Create user with SHA password

Appwrite MCP Server_users_create_target

Create user target

Appwrite MCP Server_users_delete

Delete user

Appwrite MCP Server_users_create_token

Create token

Appwrite MCP Server_users_delete_identity

Delete identity

Appwrite MCP Server_users_delete_mfa_authenticator

Delete authenticator

Appwrite MCP Server_users_delete_session

Delete user session

Appwrite MCP Server_users_delete_sessions

Delete user sessions

Appwrite MCP Server_users_delete_target

Delete user target

Appwrite MCP Server_users_get

Get user

Appwrite MCP Server_users_get_mfa_recovery_codes

Get MFA recovery codes

Appwrite MCP Server_users_get_prefs

Get user preferences

Appwrite MCP Server_users_get_target

Get user target

Appwrite MCP Server_users_list

List users

Appwrite MCP Server_users_update_status

Update user status

Appwrite MCP Server_users_list_identities

List identities

Appwrite MCP Server_users_list_logs

List user logs

Appwrite MCP Server_users_list_memberships

List user memberships

Appwrite MCP Server_users_list_mfa_factors

List factors

Appwrite MCP Server_users_list_sessions

List user sessions

Appwrite MCP Server_users_list_targets

List user targets

Appwrite MCP Server_users_update_email

Update email

Appwrite MCP Server_users_update_email_verification

Update email verification

Appwrite MCP Server_users_update_labels

Update user labels

Appwrite MCP Server_users_update_mfa

Update MFA

Appwrite MCP Server_users_update_mfa_recovery_codes

Regenerate MFA recovery codes

Appwrite MCP Server_users_update_name

Update name

Appwrite MCP Server_users_update_password

Update password

Appwrite MCP Server_users_update_phone

Update phone

Appwrite MCP Server_users_update_phone_verification

Update phone verification

Appwrite MCP Server_users_update_prefs

Update user preferences

Appwrite MCP Server_users_update_target

Update user target

Appwrite MCP Server_databases_create

Create database

Appwrite MCP Server_databases_create_boolean_attribute

Create boolean attribute

Appwrite MCP Server_databases_create_collection

Create collection

Appwrite MCP Server_databases_create_datetime_attribute

Create datetime attribute

Appwrite MCP Server_databases_get_document

Get document

Appwrite MCP Server_databases_update_collection

Update collection

Appwrite MCP Server_databases_get_index

Get index

Appwrite MCP Server_databases_update_enum_attribute

Update enum attribute

Appwrite MCP Server_databases_list

List databases

Appwrite MCP Server_databases_list_attributes

List attributes

Appwrite MCP Server_databases_list_collections

List collections

Appwrite MCP Server_databases_list_documents

List documents

Appwrite MCP Server_databases_list_indexes

List indexes

Appwrite MCP Server_databases_update

Update database

Appwrite MCP Server_databases_update_boolean_attribute

Update boolean attribute

Appwrite MCP Server_databases_create_string_attribute

Create string attribute

Appwrite MCP Server_databases_create_url_attribute

Create URL attribute

Appwrite MCP Server_databases_delete

Delete database

Appwrite MCP Server_databases_delete_attribute

Delete attribute

Appwrite MCP Server_databases_delete_collection

Delete collection

Appwrite MCP Server_databases_delete_document

Delete document

Appwrite MCP Server_databases_delete_index

Delete index

Appwrite MCP Server_databases_get

Get database

Appwrite MCP Server_databases_get_attribute

Get attribute

Appwrite MCP Server_databases_get_collection

Get collection

Appwrite MCP Server_databases_update_float_attribute

Update float attribute

Appwrite MCP Server_databases_update_integer_attribute

Update integer attribute

Appwrite MCP Server_databases_update_ip_attribute

Update IP address attribute

Appwrite MCP Server_databases_update_relationship_attribute

Update relationship attribute

Appwrite MCP Server_databases_update_string_attribute

Update string attribute

Appwrite MCP Server_databases_update_url_attribute

Update URL attribute

Retrieval-Augmented Thinking MCP Server_rat

A context-aware reasoning system that orchestrates structured thought processes through dynamic trajectories.

Core Capabilities:

  • Maintains adaptive thought chains with branching and revision capabilities
  • Implements iterative hypothesis generation and validation cycles
  • Preserves context coherence across non-linear reasoning paths
  • Supports dynamic scope adjustment and trajectory refinement

Reasoning Patterns:

  • Sequential analysis with backtracking capability
  • Parallel exploration through managed branch contexts
  • Recursive refinement via structured revision cycles
  • Hypothesis validation through multi-step verification

Parameters: thought: Structured reasoning step that supports: Primary analysis chains Hypothesis formulation/validation Branch exploration paths Revision proposals Context preservation markers Verification checkpoints

next_thought_needed: Signal for continuation of reasoning chain thought_number: Position in current reasoning trajectory total_thoughts: Dynamic scope indicator (adjustable) is_revision: Marks recursive refinement steps revises_thought: References target of refinement branch_from_thought: Indicates parallel exploration paths branch_id: Context identifier for parallel chains needs_more_thoughts: Signals scope expansion requirement

Execution Protocol:

  1. Initialize with scope estimation
  2. Generate structured reasoning steps
  3. Validate hypotheses through verification cycles
  4. Maintain context coherence across branches
  5. Implement revisions through recursive refinement
  6. Signal completion on validation success

The system maintains solution integrity through continuous validation cycles while supporting dynamic scope adjustment and non-linear exploration paths.

World Bank MCP Server_get_indicator_for_country

Get values for an indicator for a specific country from the World Bank API

JavaScript Sandbox MCP Server_execute_js

Execute JavaScript code in an isolated environment

Image Generation MCP Server_generate_image

Generate an image based on the text prompt

ScreenshotOne MCP Server_render-website-screenshot

Render a screenshot of a website and returns it as an image.

Astra DB MCP Server_GetCollections

Get all collections in the Astra DB database

Astra DB MCP Server_CreateCollection

Create a new collection in the database

Astra DB MCP Server_UpdateCollection

Update an existing collection in the database

Astra DB MCP Server_DeleteCollection

Delete a collection from the database

Astra DB MCP Server_ListRecords

List records from a collection in the database

Astra DB MCP Server_GetRecord

Get a specific record from a collection by ID

Astra DB MCP Server_CreateRecord

Create a new record in a collection

Astra DB MCP Server_UpdateRecord

Update an existing record in a collection

Astra DB MCP Server_DeleteRecord

Delete a record from a collection

Astra DB MCP Server_FindRecord

Find records in a collection by field value

Perplexity MCP Server_perplexity_ask

Send a simple query to Perplexity AI

Perplexity MCP Server_perplexity_chat

Generate a chat completion using Perplexity AI

Bloomy MCP_get_query_details

Get detailed information about specific GraphQL queries.

Retrieves argument requirements, return type information, descriptions, and example usage for the specified queries. Args: query_names: Comma-separated list of query names to get details for Returns: A YAML-formatted string containing detailed information about the requested queries
Bloomy MCP_get_mutation_details

Get detailed information about specific GraphQL mutations.

Retrieves argument requirements, return type information, descriptions, and example usage for the specified mutations. Args: mutation_names: Comma-separated list of mutation names to get details for Returns: A YAML-formatted string containing detailed information about the requested mutations
Bloomy MCP_execute_query

Execute a GraphQL query or mutation with variables.

Parses and executes the provided GraphQL operation string with optional variables. Args: query: Raw GraphQL query or mutation string variables: Optional dictionary of variables to use in the operation Returns: Dictionary containing the operation results or an error message string Raises: Exception: Handled internally, returns error message as string
Bloomy MCP_get_authenticated_user_id

Get the ID of the currently authenticated user.

Uses a special mutation to retrieve the ID of the user associated with the current API token. Returns: User ID string if successful, None if user not found, or error message string Raises: Exception: Handled internally, returns error message as string
Tembo MCP Server_get_all_apps

Get attributes for all apps

Tembo MCP Server_get_app

Get the attributes of a single App

Tembo MCP Server_ask_tembo

Ask a question to Tembo Docs

Tembo MCP Server_get_instance_schema

Get the json-schema for an instance

Tembo MCP Server_get_all_instances

Get all Tembo instances in an organization

Tembo MCP Server_create_instance

Create a new Tembo instance

Tembo MCP Server_get_instance

Get an existing Tembo instance

Tembo MCP Server_delete_instance

Delete an existing Tembo instance

Tembo MCP Server_patch_instance

Update attributes on an existing Tembo instance

Tembo MCP Server_restore_instance

Restore a Tembo instance

blastengine-mailer_send_email

Send an email using Blastengine API

Fireflies MCP Server_fireflies_generate_summary

Generate a summary of a meeting transcript

Fireflies MCP Server_fireflies_get_transcripts

Retrieve a list of meeting transcripts with optional filtering. By default, returns up to 20 most recent transcripts with no date filtering. Note that this operation may take longer for large datasets and might timeout. If a timeout occurs, a minimal set of transcript data will be returned.

Fireflies MCP Server_fireflies_get_transcript_details

Retrieve detailed information about a specific transcript. Returns a human-readable formatted transcript with speaker names and text, along with metadata and summary information.

Fireflies MCP Server_fireflies_search_transcripts

Search for transcripts containing specific keywords, with optional date filtering. Returns a human-readable list of matching transcripts with metadata and summary information.

Elasticsearch 7.x MCP Server_es-ping

Ping Elasticsearch server

Elasticsearch 7.x MCP Server_es-info

Get Elasticsearch info

Elasticsearch 7.x MCP Server_es-search

Search documents in Elasticsearch index

DeepSeek MCP Server_reason
Process a query using DeepSeek's R1 reasoning engine and prepare it for integration with DeepSeek V3 or claude. DeepSeek R1 leverages advanced reasoning capabilities that naturally evolved from large-scale reinforcement learning, enabling sophisticated reasoning behaviors. The output is enclosed within `<ant_thinking>` tags to align with V3 or Claude's thought processing framework. Args: query (dict): Contains the following keys: - context (str): Optional background information for the query. - question (str): The specific question to be analyzed. Returns: str: The reasoning output from DeepSeek, formatted with `<ant_thinking>` tags for seamless use with V3 or Claude.
MCP Server Discord Webhook_send_message

Discord

Grants Search MCP Server_search-grants

Search for government grants based on keywords

Tox Testing MCP Server_run_tox_tests

Run tox tests with different modes and options

Needle MCP Server_needle_list_collections

Retrieve a complete list of all Needle document collections accessible to your account. Returns detailed information including collection IDs, names, and creation dates. Use this tool when you need to: - Get an overview of available document collections - Find collection IDs for subsequent operations - Verify collection existence before performing operations The response includes metadata that's required for other Needle operations.

Needle MCP Server_needle_create_collection

Create a new document collection in Needle for organizing and searching documents. A collection acts as a container for related documents and enables semantic search across its contents. Use this tool when you need to: - Start a new document organization - Group related documents together - Set up a searchable document repository Returns a collection ID that's required for subsequent operations. Choose a descriptive name that reflects the collection's purpose for better organization.

Needle MCP Server_needle_get_collection_details

Fetch comprehensive metadata about a specific Needle collection. Provides detailed information about the collection's configuration, creation date, and current status. Use this tool when you need to: - Verify a collection's existence and configuration - Check collection metadata before operations - Get creation date and other attributes Requires a valid collection ID and returns detailed collection metadata. Will error if collection doesn't exist.

Needle MCP Server_needle_get_collection_stats

Retrieve detailed statistical information about a Needle collection's contents and status. Provides metrics including: - Total number of documents - Processing status of documents - Storage usage and limits - Index status and health Use this tool to: - Monitor collection size and growth - Verify processing completion - Check collection health before operations Essential for ensuring collection readiness before performing searches.

Needle MCP Server_needle_list_files

List all documents stored within a specific Needle collection with their current status. Returns detailed information about each file including: - File ID and name - Processing status (pending, processing, complete, error) - Upload date and metadata Use this tool when you need to: - Inventory available documents - Check processing status of uploads - Get file IDs for reference - Verify document availability before searching Essential for monitoring document processing completion before performing searches.

Needle MCP Server_needle_add_file

Add a new document to a Needle collection by providing a URL for download. Supports multiple file formats including: - PDF documents - Microsoft Word files (DOC, DOCX) - Plain text files (TXT) - Web pages (HTML)

The document will be: 1. Downloaded from the provided URL 2. Processed for text extraction 3. Indexed for semantic search Use this tool when you need to: - Add new documents to a collection - Make documents searchable - Expand your knowledge base Important: Documents require processing time before they're searchable. Check processing status using needle_list_files before searching new content.
Needle MCP Server_needle_search

Perform intelligent semantic search across documents in a Needle collection. This tool uses advanced embedding technology to find relevant content based on meaning, not just keywords. The search: - Understands natural language queries - Finds conceptually related content - Returns relevant text passages with source information - Ranks results by semantic relevance

Use this tool when you need to: - Find specific information within documents - Answer questions from document content - Research topics across multiple documents - Locate relevant passages and their sources More effective than traditional keyword search for: - Natural language questions - Conceptual queries - Finding related content Returns matching text passages with their source file IDs.
Iris MCP Server_generate_release_note-
BluestoneApps MCP Remote Server_get_project_structure

Get project structure standards for React Native development

BluestoneApps MCP Remote Server_get_api_communication

Get API communication standards for React Native development

BluestoneApps MCP Remote Server_get_component_design

Get component design standards for React Native development

BluestoneApps MCP Remote Server_get_state_management

Get state management standards for React Native development

BluestoneApps MCP Remote Server_get_component_example

Get a React Native component example

BluestoneApps MCP Remote Server_get_hook_example

Get a React Native hook example

BluestoneApps MCP Remote Server_get_service_example

Get a React Native service example

BluestoneApps MCP Remote Server_get_screen_example

Get a React Native screen example

BluestoneApps MCP Remote Server_get_theme_example

Get code for a React Native theme

BluestoneApps MCP Remote Server_list_available_examples

List all available code examples by category

GitHub Projects MCP Server_create-issue

Create a new GitHub issue

GitHub Projects MCP Server_update-issue

Update an existing GitHub issue

GitHub Projects MCP Server_get-repository

Get a GitHub repository by owner and name

GitHub Projects MCP Server_list-repositories

List repositories for a user

GitHub Projects MCP Server_get-project

Get a GitHub Project by ID

GitHub Projects MCP Server_list-projects

List GitHub Projects for a user

GitHub Projects MCP Server_get-project-columns

Get status columns for a GitHub Project

GitHub Projects MCP Server_get-project-fields

Get fields for a GitHub Project

GitHub Projects MCP Server_get-project-items

Get items (issues) from a GitHub Project

GitHub Projects MCP Server_create-project-item

Add an issue or PR to a GitHub Project

GitHub Projects MCP Server_update-project-item-field

Update a field value for a project item

GitHub Projects MCP Server_create-project

Create a new GitHub Project

GitHub Projects MCP Server_update-project

Update an existing GitHub Project

GitHub Projects MCP Server_delete-project

Delete a GitHub Project

GitHub Projects MCP Server_copy-project

Copy a GitHub Project

GitHub Projects MCP Server_add-draft-issue

Add a draft issue to a GitHub Project

GitHub Projects MCP Server_convert-draft-issue

Convert a draft issue to a regular issue

GitHub Projects MCP Server_add-item-to-project

Add an existing issue or PR to a GitHub Project

GitHub Projects MCP Server_update-item-position

Update the position of an item in a GitHub Project

GitHub Projects MCP Server_delete-project-item

Remove an item from a GitHub Project

GitHub Projects MCP Server_create-project-field

Create a new field in a GitHub Project

GitHub Projects MCP Server_update-project-field

Update a field in a GitHub Project

GitHub Projects MCP Server_delete-project-field

Delete a field from a GitHub Project

GitHub Projects MCP Server_update-project-status

Update the status of a GitHub Project

GitHub Projects MCP Server_archive-project-item

Archive an item in a GitHub Project

GitHub Projects MCP Server_unarchive-project-item

Unarchive an item in a GitHub Project

GitHub Projects MCP Server_clear-item-field-value

Clear a field value for an item in a GitHub Project

GitHub Projects MCP Server_mark-project-as-template

Mark a GitHub Project as a template

GitHub Projects MCP Server_unmark-project-as-template

Unmark a GitHub Project as a template

GitHub Projects MCP Server_get-issue

Get a GitHub issue by number

GitHub Projects MCP Server_list-issues

List issues for a repository

SourceSage MCP_generate_structure-
Spotify MCP_get_my_playlists
FastMCP tool to get user playlists using SpotifyClient.
Spotify MCP_start_playback
FastMCP tool to resume playback on the currently active Spotify device.
Spotify MCP_pause_playback
FastMCP tool to pause playback on spotify.
Spotify MCP_search_spotify
Search Spotify for tracks, artists, albums, or playlists. Args: query: Search term type: One of 'track', 'artist', 'album', 'playlist' limit: Max number of results
Spotify MCP_next_track

Skip to next track in queue

Spotify MCP_previous_track

Go back to previous track

Spotify MCP_seek_position
Seek to position in current track Args: position_ms: Position in milliseconds
Spotify MCP_get_playback_state

Get current playback information

Spotify MCP_get_recommendations
Get Spotify recommendations based on seeds Args: seed_artists: Comma-separated artist IDs seed_tracks: Comma-separated track IDs seed_genres: Comma-separated genres limit: Number of recommendations
Spotify MCP_get_item_info
Get detailed information about a Spotify item Args: item_id: Spotify ID type: One of 'track', 'album', 'artist', 'playlist'
Spotify MCP_start_playback_track
Start playback of a specific track on Spotify Args: track_uri: Spotify URI of the track (e.g. 'spotify:track:1234...') device_id: Optional device to play on
Spotify MCP_get_top_artists
Get user's top artists from Spotify Args: limit: Number of artists (max 50) time_range: One of 'short_term' (4 weeks), 'medium_term' (6 months), 'long_term' (all time)
Spotify MCP_get_queue

Get the current queue of tracks

Spotify MCP_add_to_queue
Add a track to the queue Args: track_id: Spotify track ID to add
Spotify MCP_skip_tracks
Skip multiple tracks at once Args: num_skips: Number of tracks to skip (default: 1)
Spotify MCP_set_repeat_mode
Set repeat mode for playback Args: state: One of 'track', 'context', or 'off'
Spotify MCP_get_current_track

Get information about the currently playing track

Spotify MCP_start_playlist_playback
Start playback of a specific playlist Args: playlist_id: Spotify playlist ID device_id: Optional device to play on
Spotify MCP_get_artist_top_tracks
Get top tracks for an artist Args: artist_id: Spotify artist ID
Spotify MCP_add_to_playlist
Add tracks to a playlist Args: playlist_id: Spotify playlist ID track_ids: List of track IDs to add
Spotify MCP_reorder_queue
Reorder tracks in queue by moving a track to a different position Args: range_start: Position of track to move insert_before: Position to insert the track
Perplexity MCP Server_search

Search the web using Perplexity AI

Perplexity MCP Server_domain_filter

Add a domain to allow or block in search results (max 3 domains per type)

Perplexity MCP Server_recency_filter

Set the time recency for search results

Perplexity MCP Server_clear_filters

Clear all domain filters

Perplexity MCP Server_list_filters

List all current domain filters

Perplexity MCP Server_model_info

Get information about available models and optionally set a specific model

Scrapbox MCP Server_get_page_content

Fetch content from a Scrapbox page by URL

MCP Jupiter_jupiter_get_quote

Get a quote for swapping tokens on Jupiter

MCP Jupiter_jupiter_build_swap_transaction

Build a swap transaction on Jupiter

MCP Jupiter_jupiter_send_swap_transaction

Send a swap transaction on Jupiter

AWS MCP Server_s3_bucket_create

Create a new S3 bucket

AWS MCP Server_s3_bucket_list

List all S3 buckets

AWS MCP Server_s3_bucket_delete

Delete an S3 bucket

AWS MCP Server_s3_object_upload

Upload an object to S3

AWS MCP Server_s3_object_delete

Delete an object from S3

AWS MCP Server_s3_object_list

List objects in an S3 bucket

AWS MCP Server_s3_object_read

Read an object's content from S3

AWS MCP Server_dynamodb_item_get

Get an item from a DynamoDB table

AWS MCP Server_dynamodb_table_create

Create a new DynamoDB table

AWS MCP Server_dynamodb_table_describe

Get details about a DynamoDB table

AWS MCP Server_dynamodb_table_list

List all DynamoDB tables

AWS MCP Server_dynamodb_table_delete

Delete a DynamoDB table

AWS MCP Server_dynamodb_table_update

Update a DynamoDB table

AWS MCP Server_dynamodb_item_put

Put an item into a DynamoDB table

AWS MCP Server_dynamodb_item_update

Update an item in a DynamoDB table

AWS MCP Server_dynamodb_item_delete

Delete an item from a DynamoDB table

AWS MCP Server_dynamodb_item_query

Query items in a DynamoDB table

AWS MCP Server_dynamodb_item_scan

Scan items in a DynamoDB table

AWS MCP Server_dynamodb_batch_get

Batch get multiple items from DynamoDB tables

AWS MCP Server_dynamodb_item_batch_write

Batch write operations (put/delete) for DynamoDB items

AWS MCP Server_dynamodb_describe_ttl

Get the TTL settings for a table

AWS MCP Server_dynamodb_update_ttl

Update the TTL settings for a table

AWS MCP Server_dynamodb_batch_execute

Execute multiple PartiQL statements in a batch

Elasticsearch Knowledge Graph for MCP_create_entities

Create entities in knowledge graph (memory)

Elasticsearch Knowledge Graph for MCP_update_entities

Update entities in knowledge graph (memory)

Elasticsearch Knowledge Graph for MCP_delete_entities

Delete entities from knowledge graph (memory)

Elasticsearch Knowledge Graph for MCP_create_relations

Create relationships between entities in knowledge graph (memory)

Elasticsearch Knowledge Graph for MCP_delete_relations

Delete relationships from knowledge graph (memory)

Elasticsearch Knowledge Graph for MCP_search_nodes

Search entities using ElasticSearch query syntax. Supports boolean operators (AND, OR, NOT), fuzzy matching (), phrases ("term"), proximity ("terms"N), wildcards (*, ?), and boosting (^N). Examples: 'meeting AND notes', 'Jon', '"project plan"2'. All searches respect zone isolation.

Elasticsearch Knowledge Graph for MCP_open_nodes

Get details about specific entities in knowledge graph (memory) and their relations

Elasticsearch Knowledge Graph for MCP_add_observations

Add observations to an existing entity in knowledge graph (memory)

Elasticsearch Knowledge Graph for MCP_mark_important

Mark entity as important in knowledge graph (memory) by boosting its relevance score

Elasticsearch Knowledge Graph for MCP_get_recent

Get recently accessed entities from knowledge graph (memory) and their relations

Elasticsearch Knowledge Graph for MCP_list_zones

List all available memory zones with metadata.

Elasticsearch Knowledge Graph for MCP_create_zone

Create a new memory zone with optional description.

Elasticsearch Knowledge Graph for MCP_delete_zone

Delete a memory zone and all its entities/relations.

Elasticsearch Knowledge Graph for MCP_copy_entities

Copy entities between zones with optional relation handling.

Elasticsearch Knowledge Graph for MCP_move_entities

Move entities between zones (copy + delete from source).

Elasticsearch Knowledge Graph for MCP_merge_zones

Merge multiple zones with conflict resolution options.

Elasticsearch Knowledge Graph for MCP_zone_stats

Get statistics for entities and relationships in a zone.

Sentry MCP Server_list_projects

List accessible Sentry projects. View project slugs, IDs, status, settings, features, and organization details.

Sentry MCP Server_resolve_short_id

Retrieve details about an issue using its short ID. Maps short IDs to issue details, project context, and status.

Sentry MCP Server_get_sentry_event

Retrieve a specific Sentry event from an issue. Requires issue ID/URL and event ID.

Sentry MCP Server_list_error_events_in_project

List error events from a specific Sentry project. View recent errors, frequency patterns, and occurrence timestamps.

Sentry MCP Server_create_project

Create a new project in Sentry. Track deployments, releases, and health metrics.

Sentry MCP Server_list_project_issues

List issues from a Sentry project. Monitor issue status, severity, frequency, and timing.

Sentry MCP Server_list_issue_events

List events for a specific Sentry issue. Analyze event details, metadata, and patterns.

Sentry MCP Server_get_sentry_issue

Retrieve and analyze a Sentry issue. Accepts issue URL or ID.

Sentry MCP Server_list_organization_replays

List replays from a Sentry organization. Monitor user sessions, interactions, errors, and experience issues.

Sentry MCP Server_setup_sentry

Set up Sentry for a project returning a dsn and instructions for setup.

Emergency Medicare Planner MCP Server_get_emergency_contacts

Retrieves emergency contact information for a specific location

Emergency Medicare Planner MCP Server_find_nearby_medical_facilities

Finds hospitals and clinics nearby user location that match specific requirements

Emergency Medicare Planner MCP Server_check_medicare_coverage

Checks what treatments and procedures are covered by Medicare

Emergency Medicare Planner MCP Server_schedule_emergency_transport

Arranges emergency medical transportation

Emergency Medicare Planner MCP Server_sequentialthinking

A detailed tool for dynamic and reflective medical problem-solving through thoughts. This tool helps analyze medical problems through a flexible thinking process that can adapt and evolve. Each thought can build on, question, or revise previous insights as understanding of the medical situation deepens.

When to use this tool:

  • Breaking down complex medical problems into steps
  • Planning and designing treatment approaches with room for revision
  • Clinical analysis that might need course correction
  • Medical problems where the full scope might not be clear initially
  • Healthcare decisions that require a multi-step solution
  • Medical evaluations that need to maintain context over multiple steps
  • Situations where irrelevant medical information needs to be filtered out

Key features:

  • You can adjust total_thoughts up or down as the diagnosis progresses
  • You can question or revise previous medical assessments
  • You can add more diagnostic thoughts as new information emerges
  • You can express clinical uncertainty and explore alternative approaches
  • Not every medical assessment needs to build linearly - you can branch or backtrack
  • Generates a clinical hypothesis
  • Verifies the hypothesis based on the Chain of Thought steps
  • Repeats the process until a satisfactory diagnosis or treatment plan is reached
  • Provides a correct medical assessment or recommendation
IP Geolocation MCP Server_get_ip_details

Get information about an IP address.

Use this tool to:

  • Determine the user's geographic location to coarse granularity
  • Get information about the user's internet service provider
  • Get information about a specific IP address

Args: ip (str | None): The IP address to look up. If None, returns information about the requesting client's IP address. ctx (Context): The MCP request context.

Returns: IPDetails: Object containing information about the IP address, including geographic location, network operator, and more.

Note: This tool requires an IPInfo API Token specified via the IPINFO_API_TOKEN environment variable for full functionality.

Whois MCP_whois_domain

Looksup whois information about the domain

Whois MCP_whois_tld

Looksup whois information about the Top Level Domain (TLD)

Whois MCP_whois_ip

Looksup whois information about the IP

Whois MCP_whois_as

Looksup whois information about the Autonomous System Number (ASN)

GitHub MCP Server_create_repo

Create or update GitHub repositories using natural language commands

MCP Server Linear_linear-search-issues

Search for issues in Linear

Claude-GAS-Bridge_execute-gas

Execute custom GAS script

Microsoft SQL Server MCP Server_execute_sql

Execute an SQL query on the SQL Server

Python Docs Server_get_python_docs

Get Python documentation for a given query

MCP-AnkiConnect_list_decks_and_notes

Get all decks and note types with their fields

MCP-AnkiConnect_num_cards_due_today

Get the number of cards due today with an optional deck filter

MCP-AnkiConnect_get_examples

Get example notes from Anki to guide your flashcard making. Limit the number of examples returned and provide a sampling technique:

- random: Randomly sample notes - recent: Notes added in the last week - most_reviewed: Notes with more than 10 reviews - best_performance: Notes with less than 3 lapses - mature: Notes with interval greater than 21 days - young: Notes with interval less than 7 days
MCP-AnkiConnect_fetch_due_cards_for_review

Fetch cards that are due for learning and format them for review. Takes optional arguments: - deck: str - Filter by specific deck. - limit: int - Maximum number of cards to fetch (default 5). More than 5 is overwhelming for users. - today_only: bool - If true, only fetch cards due today, else fetch cards up to 5 days ahead.

MCP-AnkiConnect_submit_reviews

Submit multiple card reviews to Anki.

Args: reviews: List of dictionaries containing: - card_id (int): The ID of the card being reviewed - rating (str): The rating to give the card, one of: "wrong" - Card was incorrect (Again) "hard" - Card was difficult (Hard) "good" - Card was good (Good) "easy" - Card was very easy (Easy)
MCP-AnkiConnect_add_note

Add a flashcard to Anki. Ensure you have looked at examples before you do this, and that you have got approval from the user to add the flashcard. Args: deckName: str - The name of the deck to add the flashcard to. modelName: str - The name of the note type to use. fields: dict - The fields of the flashcard to add. tags: List[str] - The tags to add to the flashcard.

SolarWinds Logs MCP Server_search_logs

Search SolarWinds Observability logs with optional filtering

SolarWinds Logs MCP Server_visualize_logs

Generate a histogram visualization of log events

DeltaTask MCP Server_get_task_by_id

Get details for a specific task by ID.

DeltaTask MCP Server_search_tasks

Search tasks by title, description, or tags.

DeltaTask MCP Server_create_task

Create a new task.

DeltaTask MCP Server_update_task

Update an existing task.

DeltaTask MCP Server_delete_task

Delete a task.

DeltaTask MCP Server_sync_tasks

Sync tasks from Obsidian markdown into SQLite.

DeltaTask MCP Server_list_tasks

List all tasks with optional tags, if you user asks for a tag, please provide it in the request.

DeltaTask MCP Server_get_statistics

Get task statistics including completion rates and urgency distribution.

DeltaTask MCP Server_create_subtasks

Create multiple subtasks for a parent task with categories.

DeltaTask MCP Server_get_all_tags

Get all unique tag names used in tasks.

DeltaTask MCP Server_get_subtasks

Get subtasks for a given parent task ID.

DeltaTask MCP Server_finish_task

Mark a task as completed.

Excel Reader Server_read_excel

Read content from Excel (xlsx) files

Excel Reader Server_read_excel_by_sheet_name

Read content from a specific sheet by name in Excel (xlsx) files. Reads first sheet if sheet_name not provided.

Excel Reader Server_read_excel_by_sheet_index

Read content from a specific sheet by index in Excel (xlsx) files. Reads first sheet (index 0) if sheet_index not provided.

Dub.co MCP Server_create_link

Create a new short link on dub.co, asking the user which domain to use

Dub.co MCP Server_update_link

Update an existing short link on dub.co

Dub.co MCP Server_upsert_link

Create or update a short link on dub.co, asking the user which domain to use if creating

Dub.co MCP Server_delete_link

Delete a short link on dub.co

Command Executor MCP Server_execute_command-
Confluence Communication Server_execute_cql_search

Execute a CQL query on Confluence to search pages

Confluence Communication Server_get_page_content

Get the content of a Confluence page

Image Generator MCP Server_generate_image

Generate an image from a prompt.

Todoist MCP_get-tasks

Get all tasks from Todoist

Todoist MCP_update-task

Update a task in Todoist

Todoist MCP_close-task

Close (complete) a task in Todoist

Todoist MCP_move-task-to-project

Move a task to a different project in Todoist

Todoist MCP_move-task-to-section

Move a task to a different section in Todoist

Todoist MCP_delete-task

Delete a task from a project in Todoist

Todoist MCP_reopen-task

Reopens a previously closed (completed) task in Todoist

Todoist MCP_add-section

Add a section to a project in Todoist

Todoist MCP_get-section

Get section details in Todoist

Todoist MCP_get-sections

Get all sections from a project in Todoist

Todoist MCP_update-section

Update a section in Todoist

Todoist MCP_delete-section

Delete a section from a project in Todoist

Todoist MCP_add-comment-to-project

Add a comment to a project in Todoist

Todoist MCP_add-comment-to-task

Add a comment to a task in Todoist

Todoist MCP_get-comment

Get a comment from a task or project in Todoist

Todoist MCP_update-comment

Update a comment in Todoist

Todoist MCP_delete-comment

Delete a comment from a task in Todoist

Todoist MCP_get-task-comments

Get comments from a task in Todoist

Todoist MCP_get-project-comments

Get comments from a project in Todoist

Todoist MCP_add-label

Add a label to a task in Todoist

Todoist MCP_delete-label

Delete a label from Todoist

Todoist MCP_update-label

Update a label in Todoist

Todoist MCP_get-label

Get a label from Todoist

Todoist MCP_get-labels

Get all labels in Todoist

Todoist MCP_get-shared-labels

Retrieves a list of shared labels in Todoist

Todoist MCP_remove-shared-label

Remove shared label in Todoist

Todoist MCP_rename-shared-label

Rename a shared label in Todoist

Todoist MCP_add-project

Add a project to Todoist

Todoist MCP_get-projects

Get all projects from Todoist

Todoist MCP_get-project

Get a project from Todoist

Todoist MCP_update-project

Update a project in Todoist

Todoist MCP_delete-project

Delete a project in Todoist

Todoist MCP_move-task-to-parent

Move a task to a parent in Todoist

Todoist MCP_get-project-collaborators

Get all collaborators from a project in Todoist

Todoist MCP_add-task

Add a task to Todoist

Todoist MCP_get-task

Retrieves a task by its ID in Todoist

Hyperliquid MCP Server_get_all_mids

Get mid prices for all coins on Hyperliquid

Hyperliquid MCP Server_get_candle_snapshot

Get candlestick data for a token on Hyperliquid

Hyperliquid MCP Server_get_l2_book

Get the L2 book of a token on Hyperliquid

MCP Client Configuration Server_get_configuration_path

Get the path to the configuration file for a specific client

MCP Client Configuration Server_get_configuration

Get the entire configuration for a specific client

MCP Client Configuration Server_list_servers

List all server names configured in a specific client

MCP Client Configuration Server_get_server_configuration

Get the configuration for a specific server from a client configuration

MCP Client Configuration Server_add_server_configuration

Add or update a server configuration in a client configuration

MCP Client Configuration Server_remove_server_configuration

Remove a server configuration from a client configuration

Perplexity Tool for Claude Desktop_ask_perplexity

Ask a question to Perplexity AI

Memory Cache MCP Server_store_data

Store data in the cache with optional TTL

Memory Cache MCP Server_retrieve_data

Retrieve data from the cache

Memory Cache MCP Server_clear_cache

Clear specific or all cache entries

Memory Cache MCP Server_get_cache_stats

Get cache statistics

OpenAPI Client Generator MCP_generate_client

Generate TypeScript API client from OpenAPI specification

Hacker News MCP Server_search

Search for stories and comments on Hacker News

Hacker News MCP Server_getComments

Get comments for a story

Hacker News MCP Server_getStory

Get a single story by ID

Hacker News MCP Server_getStoryWithComments

Get a story with its comments

Hacker News MCP Server_getStories

Get multiple stories by type (top, new, best, ask, show, job)

Hacker News MCP Server_getComment

Get a single comment by ID

Hacker News MCP Server_getCommentTree

Get a comment tree for a story

Hacker News MCP Server_getUser

Get a user profile by ID

Hacker News MCP Server_getUserSubmissions

Get a user's submissions

Ethereum RPC MCP Server_eth_getCode

Retrieves the code at a given Ethereum address

Ethereum RPC MCP Server_eth_gasPrice

Retrieves the current gas price in wei

Ethereum RPC MCP Server_eth_getBalance

Retrieves the balance of a given Ethereum address

Ethereum RPC MCP Server_eth_call

Executes a call to a contract function without creating a transaction

Ethereum RPC MCP Server_eth_getLogs

Retrieves logs matching the given filter criteria

Ethereum RPC MCP Server_eth_sendTransaction

Sends a transaction to the Ethereum network

MCP Paradex Server_paradex-account-summary
Get account summary. Returns: Dict[str, Any]: Account summary.
MCP Paradex Server_paradex-account-positions
Get account positions. Returns: Dict[str, Any]: Account positions.
MCP Paradex Server_paradex-system-config
Get global Paradex system configuration. Retrieves the current system-wide configuration parameters from Paradex, including trading limits, fee schedules, and other global settings. This information is useful for understanding the current operating parameters of the exchange. Returns: Dict[str, Any]: Global Paradex system configuration with the following structure: - exchange (str): Exchange name ("Paradex") - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current environment (mainnet/testnet) - status (str): Current system status ("operational", "maintenance", etc.) - features (List[str]): Available trading features - trading_hours (str): Trading availability - website (str): Exchange website URL - documentation (str): Documentation URL - [Additional system parameters from Paradex API] If an error occurs, returns error information.
MCP Paradex Server_paradex-system-time
Get the current Paradex server time. Retrieves the current server time from Paradex. This is important for time-sensitive operations like trading, as local time might differ from the exchange's server time. Using the exchange time ensures accurate timestamp coordination for orders and other time-dependent operations. Returns: Dict[str, Any]: Current server time information with the following structure: - server_time (int): Current server time in milliseconds since epoch - iso_time (str): ISO-formatted timestamp If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message
MCP Paradex Server_paradex-system-state
Get the current Paradex system operational state. Retrieves the current operational state of the Paradex exchange, including information about system health, maintenance status, and any active alerts or notices. This is useful for checking if the exchange is fully operational before executing trades. Returns: Dict[str, Any]: Current system state information with the following structure: - status (str): Overall system status ("operational", "degraded", "maintenance", etc.) - components (Dict): Status of individual system components - maintenance (Dict, optional): Information about ongoing or scheduled maintenance - notices (List, optional): System-wide notices or alerts If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message
MCP Paradex Server_paradex-vault-list
Get a list of available vaults from Paradex. Retrieves all available vaults on Paradex, including their addresses and names. This tool requires no parameters and returns a comprehensive list of all vaults that can be accessed on Paradex. Returns: Dict[str, Any]: List of available vaults with the following structure: - success (bool): Whether the request was successful - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment (mainnet/testnet) - vaults (List[Dict]): List of vault objects with address and name - count (int): Total number of vaults If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - vaults (List): Empty list - count (int): 0
MCP Paradex Server_paradex-vault-details
Get detailed information about a specific vault. Retrieves comprehensive details about a specific vault identified by its address, including configuration, permissions, and other vault-specific parameters. Returns: Dict[str, Any]: Detailed vault information with the following structure: - success (bool): Whether the request was successful - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment (mainnet/testnet) - vaults (List[Dict]): List containing the vault details - count (int): Number of vaults returned (should be 1) If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - vaults (List): Empty list - count (int): 0
MCP Paradex Server_paradex-vaults-config
Get global configuration for vaults from Paradex. Retrieves system-wide configuration parameters for vaults on Paradex, including fee structures, limits, and other global settings that apply to all vaults on the platform. Returns: Dict[str, Any]: Global vault configuration with the following structure: - success (bool): Whether the request was successful - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment (mainnet/testnet) - config (Dict): Global vault configuration parameters If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - config (None): Null value for config
MCP Paradex Server_paradex-market-names
Get a list of available markets from Paradex. Retrieves all available trading markets/pairs from the Paradex exchange. This tool requires no parameters and returns a comprehensive list of all markets that can be traded on Paradex. Returns: Dict[str, Any]: List of available markets with the following structure: - success (bool): Whether the request was successful - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment (mainnet/testnet) - markets (List[str]): List of market symbols - count (int): Total number of markets
MCP Paradex Server_paradex-market-details
Get detailed information about a specific market. Retrieves comprehensive details about a specific market, including base and quote assets, tick size, minimum order size, and other trading parameters. Returns: Dict[str, Any]: Detailed market information with the following structure: - success (bool): Whether the request was successful - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment (mainnet/testnet) - details (Dict): Detailed market information including trading parameters - error (str, optional): Error message if request failed
MCP Paradex Server_paradex-vault-balance
Get the current balance of a specific vault. Retrieves the current balance information for a specific vault, including available funds, locked funds, and total balance. This is essential for understanding the financial state of a vault before executing trades or withdrawals. Returns: Dict[str, Any]: Balance information for the vault, including: - available (float): Available balance that can be used for trading - locked (float): Balance locked in open orders or positions - total (float): Total balance (available + locked) - currency (str): Currency of the balance (e.g., "USDC") If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - balance (None): Null value for balance
MCP Paradex Server_paradex-vault-summary
Get a comprehensive summary of a specific vault. Retrieves a summary of all important information about a vault, including balance, positions, recent activity, and performance metrics. This provides a high-level overview of the vault's current state. Returns: Dict[str, Any]: Summary information for the vault, including: - balance (Dict): Current balance information - positions (List): Current open positions - performance (Dict): Performance metrics - recent_activity (List): Recent transactions or trades If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - summary (None): Null value for summary
MCP Paradex Server_paradex-vault-transfers
Get a list of deposit and withdrawal transfers for a specific vault. Retrieves the history of all transfers (deposits and withdrawals) for a vault, including timestamps, amounts, transaction hashes, and status information. This is useful for auditing vault activity and tracking fund movements. Returns: Dict[str, Any]: List of transfers for the vault, each containing: - id (str): Transfer ID - type (str): "DEPOSIT" or "WITHDRAWAL" - amount (float): Transfer amount - currency (str): Currency of the transfer - timestamp (str): When the transfer occurred - status (str): Status of the transfer (e.g., "COMPLETED", "PENDING") - transaction_hash (str): Blockchain transaction hash If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - transfers (None): Null value for transfers
MCP Paradex Server_paradex-vault-positions
Get a list of current trading positions for a specific vault. Retrieves all open trading positions for a vault, including market, size, entry price, liquidation price, unrealized PnL, and other position-specific information. Returns: Dict[str, Any]: List of positions for the vault, each containing: - market_id (str): Market identifier (e.g., "ETH-PERP") - side (str): Position side ("LONG" or "SHORT") - size (float): Position size - entry_price (float): Average entry price - mark_price (float): Current mark price - liquidation_price (float): Price at which position would be liquidated - unrealized_pnl (float): Unrealized profit/loss - leverage (float): Current leverage If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - positions (None): Null value for positions
MCP Paradex Server_paradex-vault-account-summary
Get a summary of trading account information for a specific vault. Retrieves a comprehensive summary of the trading account associated with a vault, including margin information, account health, risk metrics, and trading statistics. Returns: Dict[str, Any]: Account summary information, including: - margin_ratio (float): Current margin ratio - account_health (float): Account health percentage - total_equity (float): Total account equity - available_margin (float): Available margin for new positions - used_margin (float): Margin currently in use - unrealized_pnl (float): Total unrealized profit/loss - realized_pnl_24h (float): Realized profit/loss in the last 24 hours - open_orders_count (int): Number of open orders - positions_count (int): Number of open positions If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - account_summary (None): Null value for account summary
MCP Paradex Server_paradex-market-summary
Get a summary of market statistics and current state. Retrieves current market summary information including price, volume, 24h change, and other key market metrics. Returns: Dict[str, Any]: Market summary information including: - Current price - 24h high/low - 24h volume - Price change percentage - Other market statistics If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - summary (None): Null value for summary
MCP Paradex Server_paradex-funding-data
Get historical funding rate data for a perpetual market. Retrieves funding rate history for a specified time period, which is essential for understanding the cost of holding perpetual positions. Returns: Dict[str, Any]: Historical funding rate data with timestamps. If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - funding_data (None): Null value for funding data
MCP Paradex Server_paradex-bbo
Get the Best Bid and Offer (BBO) for a market. Retrieves the current best bid and best offer (ask) prices and sizes for a specified market. This represents the tightest spread currently available. Returns: Dict[str, Any]: Best bid and offer information including: - bid price and size - ask price and size - timestamp If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message
MCP Paradex Server_paradex-orderbook
Get the current orderbook for a market. Retrieves the current state of the orderbook for a specified market, showing bid and ask orders up to the requested depth. Returns: Dict[str, Any]: Orderbook data including: - bids: List of [price, size] pairs - asks: List of [price, size] pairs - timestamp If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message - orderbook (None): Null value for orderbook
MCP Paradex Server_paradex-klines
Get candlestick (kline) data for a market. Retrieves historical price candlestick data for a specified market and time period. Each candlestick contains open, high, low, close prices and volume information. Returns: Dict[str, Any]: Candlestick data with the following structure for each candle: - timestamp - open price - high price - low price - close price - volume If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message
MCP Paradex Server_paradex-trades
Get recent trades for a market. Retrieves historical trade data for a specified market and time period. Each trade includes price, size, side (buy/sell), and timestamp information. Returns: Dict[str, Any]: List of trades with the following structure for each trade: - id: Trade ID - price: Execution price - size: Trade size - side: "buy" or "sell" - timestamp: Time of execution If an error occurs, returns: - success (bool): False - timestamp (str): ISO-formatted timestamp of the request - environment (str): Current Paradex environment - error (str): Error message
MCP Paradex Server_paradex-account-fills
Get account fills. Returns: Dict: Account fills.
MCP Paradex Server_paradex-account-funding-payments
Get account funding payments. Returns: Dict[str, Any]: Account funding payments.
MCP Paradex Server_paradex-account-open-orders
Get account open orders. Returns: Dict[str, Any]: Account orders.
MCP Paradex Server_paradex-create-order
Create a new order. Returns: Dict[str, Any]: Created order details.
MCP Paradex Server_paradex-cancel-order
Cancel an order. Returns: Dict[str, Any]: Cancelled order details.
MCP Paradex Server_paradex-cancel-all-orders
Cancel all orders.
MCP Paradex Server_paradex-get-order-status
Get order status. Returns: Dict[str, Any]: Order details.
Letta MCP Server_create_agent

Create a new Letta agent with specified configuration

Letta MCP Server_list_agents

List all available agents in the Letta system

Letta MCP Server_prompt_agent

Send a message to an agent and get a response

Letta MCP Server_list_agent_tools

List all tools available for a specific agent

Letta MCP Server_list_tools

List all available tools on the Letta server

Letta MCP Server_attach_tool

Attach a tool to an agent

Letta MCP Server_list_memory_blocks

List all memory blocks available in the Letta system

Letta MCP Server_attach_memory_block

Attach a memory block to an agent

Letta MCP Server_create_memory_block

Create a new memory block in the Letta system

Airtable MCP Server_list_tables

List all tables in a base

Airtable MCP Server_list_bases

List all accessible Airtable bases

Airtable MCP Server_create_table

Create a new table in a base

Airtable MCP Server_update_table

Update a table's schema

Airtable MCP Server_create_field

Create a new field in a table

Airtable MCP Server_update_field

Update a field in a table

Airtable MCP Server_list_records

List records in a table

Airtable MCP Server_create_record

Create a new record in a table

Airtable MCP Server_update_record

Update an existing record in a table

Airtable MCP Server_delete_record

Delete a record from a table

Airtable MCP Server_search_records

Search for records in a table

Airtable MCP Server_get_record

Get a single record by its ID

Specif-ai MCP Server_set-project-path

Set the project path and reload the solution, use this tool only when we not automatically able to infer the project path or asked by the user or us., we will try to auto infer it from the environment first.

Specif-ai MCP Server_get-brds

Get Business Requirement Documents for this project

Specif-ai MCP Server_get-prds

Get Product Requirement Documents for this project

Specif-ai MCP Server_get-nfrs

Get Non-Functional Requirement Documents for this project

Specif-ai MCP Server_get-uirs

Get User Interface Requirement Documents for this project

Specif-ai MCP Server_get-bps

Get Business Process Documents for this project

Specif-ai MCP Server_get-user-stories

Get User Stories for a particular PRD

Specif-ai MCP Server_get-tasks

Get Tasks for a particular User Story

Specif-ai MCP Server_get-task

Get a Task for a particular User Story in a particular PRD

MCPunk_get_a_joke

Get a really funny joke! For testing :)

MCPunk_configure_project

Configure a new project containing files.

Each file in the project is split into 'chunks' - logical sections like functions, classes, markdown sections, and import blocks. After configuring, a common workflow is: 1. list_all_files_in_project to get an overview of the project (with an initial limit on the depth of the search) 2. Find files by function/class definition: find_files_by_chunk_content(... ["def my_funk"]) 3. Find files by function/class usage: find_files_by_chunk_content(... ["my_funk"]) 4. Determine which chunks in the found files are relevant: find_matching_chunks_in_file(...) 5. Get details about the chunks: chunk_details(...) Use ~ (tilde) literally if the user specifies it in paths.
MCPunk_list_all_files_in_project

List all files in a project, returning a file tree.

This is useful for getting an overview of the project, or specific subdirectories of the project. A project may have many files, so you are suggested to start with a depth limit to get an overview, and then continue increasing the depth limit with a filter to look at specific subdirectories.
MCPunk_find_files_by_chunk_content

Step 1: Find files containing chunks with matching text.

Returns file tree only showing which files contain matches. You must use find_matching_chunks_in_file on each relevant file to see the actual matches. Example workflow: 1. Find files: files = find_files_by_chunk_content(project, ["MyClass"]) 2. For each file, find actual matches: matches = find_matching_chunks_in_file(file, ["MyClass"]) 3. Get content: content = chunk_details(file, match_id)
MCPunk_find_matching_chunks_in_file

Step 2: Find the actual matching chunks in a specific file.

Required after find_files_by_chunk_content or list_all_files_in_project to see matches, as those tools only show files, not their contents. This can be used for things like: - Finding all chunks in a file that make reference to a specific function (e.g. find_matching_chunks_in_file(..., ["my_funk"]) - Finding a chunk where a specific function is defined (e.g. find_matching_chunks_in_file(..., ["def my_funk"]) Some chunks are split into multiple parts, because they are too large. This will look like 'chunkx_part1', 'chunkx_part2', ...
MCPunk_chunk_details

Get full content of a specific chunk.

Returns chunk content as string. Common patterns: 1. Final step after find_matching_chunks_in_file finds relevant chunks 2. Examining implementations after finding definitions/uses
MCPunk_list_most_recently_checked_out_branches

List the n most recently checked out branches in the project

MCPunk_diff_with_ref

Return a summary of the diff between HEAD and the given ref.

You probably want the ref to be the 'base' branch like develop or main, off which PRs are made - and you can likely determine this by viewing the most recently checked out branches.
Data.gov MCP Server_package_search

Search for packages (datasets) on Data.gov

Data.gov MCP Server_package_show

Get details for a specific package (dataset)

Data.gov MCP Server_group_list

List groups on Data.gov

Data.gov MCP Server_tag_list

List tags on Data.gov

MCP Calc Tools_derivative

Calculate the derivative of a mathematical expression

MCP Calc Tools_integral

Calculate the indefinite integral of a mathematical expression

MCP Calc Tools_riemann_sum

Calculate the Riemann sum of a function using different methods

MCP Calc Tools_area

Calculate the area under a curve between two points

MCP Calc Tools_volume

Calculate the volume of revolution around x-axis

MCP Calc Tools_logarithm

Calculate logarithm with any base

MCP Calc Tools_exponential

Calculate exponential function (e^x)

MCP Calc Tools_compound_interest

Calculate compound interest

MCP Calc Tools_present_value

Calculate present value of future cash flows

MCP Calc Tools_npv

Calculate Net Present Value of cash flows

MCP Calc Tools_darboux_sum

Calculate the Darboux sum of a function

MCP Calc Tools_limit

Calculate the limit of a function as it approaches a value

MCP Calc Tools_solve

Solve an equation for a variable

MCP Calc Tools_laplace_transform

Calculate the Laplace transform of a function

MCP Calc Tools_fourier_transform

Calculate the Fourier transform of a function

MCP Calc Tools_z_transform

Calculate the Z-transform of a function

MCP Calc Tools_black_scholes

Calculate Black-Scholes option price

MCP Calc Tools_option_greeks

Calculate the Greeks for a Black-Scholes option

Lichess MCP_unblock_user

Unblock a user

Lichess MCP_get_user_profile

Get a user's Lichess profile information

Lichess MCP_get_my_email

Get your email address

Lichess MCP_get_kid_mode

Get kid mode status

Lichess MCP_set_kid_mode

Set kid mode status

Lichess MCP_create_challenge

Create a new challenge

Lichess MCP_set_token

Set your Lichess API token

Lichess MCP_get_my_profile

Get your Lichess profile information

Lichess MCP_make_move

Make a move in an ongoing game

Lichess MCP_get_preferences

Get your preferences

Lichess MCP_get_timeline

Get your timeline

Lichess MCP_test_tokens

Test multiple OAuth tokens

Lichess MCP_revoke_token

Revoke the current access token

Lichess MCP_upgrade_to_bot

Upgrade to Bot account. WARNING: This is irreversible and the account must not have played any games.

Lichess MCP_add_user_note

Add a private note about a user

Lichess MCP_send_message

Send a private message to another player

Lichess MCP_get_following

Get users followed by the logged in user

Lichess MCP_follow_user

Follow a player

Lichess MCP_unfollow_user

Unfollow a player

Lichess MCP_block_user

Block a player

Lichess MCP_get_users_status

Get real-time users status

Lichess MCP_get_all_top_10

Get the top 10 players for each speed and variant

Lichess MCP_get_leaderboard

Get the leaderboard for a single speed or variant

Lichess MCP_get_user_public_data

Get public data of a user

Lichess MCP_get_rating_history

Get rating history of a user for all perf types

Lichess MCP_get_user_performance

Get performance statistics of a user

Lichess MCP_get_user_activity

Get activity feed of a user

Lichess MCP_get_users_by_id

Get multiple users by their IDs

Lichess MCP_export_game

Export one game in PGN or JSON format

Lichess MCP_export_ongoing_game

Export ongoing game of a user

Lichess MCP_export_user_games

Export all games of a user

Lichess MCP_export_games_by_ids

Export multiple games by IDs

Lichess MCP_get_tv_channels

Get all TV channels and their current games

Lichess MCP_get_tv_game

Get current TV game in PGN format

Lichess MCP_get_puzzle_activity

Get your puzzle activity

Lichess MCP_get_puzzle_dashboard

Get your puzzle dashboard

Lichess MCP_get_puzzle_race

Get info about a puzzle race

Lichess MCP_create_puzzle_race

Create a puzzle race

Lichess MCP_get_puzzle_storm_dashboard

Get your puzzle storm dashboard

Lichess MCP_get_team_info

Get team information by ID

Lichess MCP_get_team_members

Get members of a team

Lichess MCP_get_team_join_requests

Get join requests for a team

Lichess MCP_join_team

Join a team

Lichess MCP_leave_team

Leave a team

Lichess MCP_kick_user_from_team

Kick a user from your team

Lichess MCP_accept_join_request

Accept a join request for your team

Lichess MCP_decline_join_request

Decline a join request for your team

Lichess MCP_search_teams

Search for teams

Lichess MCP_make_board_move

Make a move in a board game

Lichess MCP_abort_board_game

Abort a board game

Lichess MCP_resign_board_game

Resign a board game

Lichess MCP_write_in_chat

Write in the chat of a board game

Lichess MCP_handle_draw_board_game

Handle draw offers for a board game

Lichess MCP_claim_victory

Claim victory if opponent abandoned the game

Lichess MCP_list_challenges

List incoming and outgoing challenges

GitLab Kanban MCP Server_list_tasks-
GitLab Kanban MCP Server_create_task-
GitLab Kanban MCP Server_update_task-
GitLab Kanban MCP Server_delete_task-
GitLab Kanban MCP Server_add_comment-
iMessage MCP Server_send_imessage

Send an iMessage using Messages app

iMessage MCP Server_search_contacts

Search contacts by name, phone, or email

CouchDB MCP Server_createDatabase

Create a new CouchDB database

CouchDB MCP Server_listDatabases

List all CouchDB databases

CouchDB MCP Server_deleteDatabase

Delete a CouchDB database

CouchDB MCP Server_createDocument

Create a new document or update an existing document in a database

CouchDB MCP Server_getDocument

Get a document from a database

CouchDB MCP Server_createMangoIndex

Create a new Mango index (CouchDB 3.x+)

CouchDB MCP Server_deleteMangoIndex

Delete a Mango index (CouchDB 3.x+)

CouchDB MCP Server_listMangoIndexes

List all Mango indexes in a database (CouchDB 3.x+)

CouchDB MCP Server_findDocuments

Query documents using Mango query (CouchDB 3.x+)

Memory Box MCP Server_save_memory

Save a memory to Memory Box with proper formatting

Memory Box MCP Server_search_memories

Search for memories using semantic search

Memory Box MCP Server_get_all_memories

Retrieve all memories

Memory Box MCP Server_get_bucket_memories

Get memories from a specific bucket

Memory Box MCP Server_format_memory

Format a text according to the memory system prompt without saving

Memory Box MCP Server_get_usage_stats

Retrieve user usage statistics and plan information

JSON MCP Server_query

Query JSON data using JSONPath syntax

JSON MCP Server_filter

Filter JSON data using conditions

Draw Things MCP_generateImage

Generate an image based on a prompt

Jenkins Server MCP_get_build_status

Get the status of a Jenkins build

Jenkins Server MCP_trigger_build

Trigger a new Jenkins build

Jenkins Server MCP_get_build_log

Get the console output of a Jenkins build

MCP Server for Apache OpenDAL_list
List files in OpenDAL service Args: uri: resource URI, e.g. mys3://path/to/dir Returns: String containing directory content
MCP Server for Apache OpenDAL_read
Read file content from OpenDAL service Args: uri: resource URI, e.g. mys3://path/to/file Returns: File content or error information
MCP Server for Apache OpenDAL_get_info
Get metadata of file in OpenDAL service Args: uri: resource URI, e.g. mys3://path/to/file Returns: File metadata information
Salesforce MCP Server_salesforce_search_objects

Search for Salesforce standard and custom objects by name pattern. Examples: 'Account' will find Account, AccountHistory; 'Order' will find WorkOrder, ServiceOrder__c etc.

Salesforce MCP Server_salesforce_describe_object

Get detailed schema metadata including all fields, relationships, and field properties of any Salesforce object. Examples: 'Account' shows all Account fields including custom fields; 'Case' shows all Case fields including relationships to Account, Contact etc.

Salesforce MCP Server_salesforce_query_records

Query records from any Salesforce object using SOQL, including relationship queries.

Examples:

  1. Parent-to-child query (e.g., Account with Contacts):
    • objectName: "Account"
    • fields: ["Name", "(SELECT Id, FirstName, LastName FROM Contacts)"]
  2. Child-to-parent query (e.g., Contact with Account details):
    • objectName: "Contact"
    • fields: ["FirstName", "LastName", "Account.Name", "Account.Industry"]
  3. Multiple level query (e.g., Contact -> Account -> Owner):
    • objectName: "Contact"
    • fields: ["Name", "Account.Name", "Account.Owner.Name"]
  4. Related object filtering:
    • objectName: "Contact"
    • fields: ["Name", "Account.Name"]
    • whereClause: "Account.Industry = 'Technology'"

Note: When using relationship fields:

  • Use dot notation for parent relationships (e.g., "Account.Name")
  • Use subqueries in parentheses for child relationships (e.g., "(SELECT Id FROM Contacts)")
  • Custom relationship fields end in "__r" (e.g., "CustomObject__r.Name")
Salesforce MCP Server_salesforce_dml_records

Perform data manipulation operations on Salesforce records:

  • insert: Create new records
  • update: Modify existing records (requires Id)
  • delete: Remove records (requires Id)
  • upsert: Insert or update based on external ID field Examples: Insert new Accounts, Update Case status, Delete old records, Upsert based on custom external ID
Salesforce MCP Server_salesforce_manage_object

Create new custom objects or modify existing ones in Salesforce:

  • Create: New custom objects with fields, relationships, and settings
  • Update: Modify existing object settings, labels, sharing model Examples: Create Customer_Feedback__c object, Update object sharing settings Note: Changes affect metadata and require proper permissions
Salesforce MCP Server_salesforce_manage_field

Create new custom fields or modify existing fields on any Salesforce object:

  • Field Types: Text, Number, Date, Lookup, Master-Detail, Picklist etc.
  • Properties: Required, Unique, External ID, Length, Scale etc.
  • Relationships: Create lookups and master-detail relationships Examples: Add Rating__c picklist to Account, Create Account lookup on Custom Object Note: Changes affect metadata and require proper permissions
Salesforce MCP Server_salesforce_search_all

Search across multiple Salesforce objects using SOSL (Salesforce Object Search Language).

Examples:

  1. Basic search across all objects: { "searchTerm": "John", "objects": [ { "name": "Account", "fields": ["Name"], "limit": 10 }, { "name": "Contact", "fields": ["FirstName", "LastName", "Email"] } ] }
  2. Advanced search with filters: { "searchTerm": "Cloud*", "searchIn": "NAME FIELDS", "objects": [ { "name": "Account", "fields": ["Name", "Industry"], "orderBy": "Name DESC", "where": "Industry = 'Technology'" } ], "withClauses": [ { "type": "NETWORK", "value": "ALL NETWORKS" }, { "type": "SNIPPET", "fields": ["Description"] } ] }

Notes:

  • Use * and ? for wildcards in search terms
  • Each object can have its own WHERE, ORDER BY, and LIMIT clauses
  • Support for WITH clauses: DATA CATEGORY, DIVISION, METADATA, NETWORK, PRICEBOOKID, SNIPPET, SECURITY_ENFORCED
  • "updateable" and "viewable" options control record access filtering
Math-MCP_add

Adds two numbers together

Math-MCP_subtract

Subtracts the second number from the first number

Math-MCP_multiply

Multiplies two numbers together

Math-MCP_division

Divides the first number by the second number

Math-MCP_sum

Adds any number of numbers together

Math-MCP_mean

Calculates the arithmetic mean of a list of numbers

Math-MCP_median

Calculates the median of a list of numbers

Math-MCP_mode

Finds the most common number in a list of numbers

Math-MCP_min

Finds the minimum value from a list of numbers

Math-MCP_max

Finds the maximum value from a list of numbers

Math-MCP_floor

Rounds a number down to the nearest integer

Math-MCP_ceiling

Rounds a number up to the nearest integer

Math-MCP_round

Rounds a number to the nearest integer

MCP Image Recognition Server_describe_image

Describe an image from base64-encoded data. Use for images directly uploaded to chat.

Best for: Images uploaded to the current conversation where no public URL exists. Not for: Local files on your computer or images with public URLs. Args: image: Base64-encoded image data prompt: Optional prompt to guide the description Returns: str: Detailed description of the image
MCP Image Recognition Server_describe_image_from_file

Describe an image from a local file path. Requires proper file system access.

Best for: Local files when the server has filesystem access to the path. Limitations: When using Docker, requires volume mapping (-v flag) to access host files. Not recommended for: Images uploaded to chat or images with public URLs. Args: filepath: Absolute path to the image file prompt: Optional prompt to guide the description Returns: str: Detailed description of the image
MCP Image Recognition Server_describe_image_from_url

Describe an image from a public URL. Most reliable method for web images.

Best for: Images with public URLs accessible from the internet. Advantages: Works regardless of server deployment method (local/Docker). Not for: Local files or images already uploaded to the current conversation. Args: url: Direct URL to the image (must be publicly accessible) prompt: Optional prompt to guide the description Returns: str: Detailed description of the image
Twitter MCP Server_post_tweet

Post a new tweet to Twitter

Twitter MCP Server_search_tweets

Search for tweets on Twitter

Shannon Thinking MCP Server_shannonthinking

A problem-solving tool inspired by Claude Shannon's systematic and iterative approach to complex problems.

This tool helps break down problems using Shannon's methodology of problem definition, mathematical modeling, validation, and practical implementation.

When to use this tool:

  • Complex system analysis
  • Information processing problems
  • Engineering design challenges
  • Problems requiring theoretical frameworks
  • Optimization problems
  • Systems requiring practical implementation
  • Problems that need iterative refinement
  • Cases where experimental validation complements theory

Key features:

  • Systematic progression through problem definition constraints modeling validation implementation
  • Support for revising earlier steps as understanding evolves
  • Ability to mark steps for re-examination with new information
  • Experimental validation alongside formal proofs
  • Explicit tracking of assumptions and dependencies
  • Confidence levels for each step
  • Rich feedback and validation results

Parameters explained:

  • thoughtType: Type of thinking step (PROBLEM_DEFINITION, CONSTRAINTS, MODEL, PROOF, IMPLEMENTATION)
  • uncertainty: Confidence level in the current thought (0-1)
  • dependencies: Which previous thoughts this builds upon
  • assumptions: Explicit listing of assumptions made
  • isRevision: Whether this revises an earlier thought
  • revisesThought: Which thought is being revised
  • recheckStep: For marking steps that need re-examination
  • proofElements: For formal validation steps
  • experimentalElements: For empirical validation
  • implementationNotes: For practical application steps

The tool supports an iterative approach:

  1. Define the problem's fundamental elements (revisable as understanding grows)
  2. Identify system constraints and limitations (can be rechecked with new information)
  3. Develop mathematical/theoretical models
  4. Validate through proofs and/or experimental testing
  5. Design and test practical implementations

Each thought can build on, revise, or re-examine previous steps, creating a flexible yet rigorous problem-solving framework.

Python REPL MCP Server_execute_python

Execute Python code and return the output. Variables persist between executions.

Python REPL MCP Server_list_variables

List all variables in the current session

Python REPL MCP Server_install_package

Install a Python package using uv

Smartsheet MCP Server_smartsheet_add_column

Add a new column to a Smartsheet

Smartsheet MCP Server_smartsheet_delete_column

Delete a column from a Smartsheet

Smartsheet MCP Server_smartsheet_rename_column

Rename a column in a Smartsheet

Smartsheet MCP Server_get_column_map

Get column mapping and sample data from a Smartsheet

Smartsheet MCP Server_smartsheet_write

Write data to a Smartsheet

Smartsheet MCP Server_smartsheet_update

Update existing rows in a Smartsheet

Smartsheet MCP Server_smartsheet_delete

Delete rows from a Smartsheet

Smartsheet MCP Server_smartsheet_search

Search for content in a Smartsheet

Smartsheet MCP Server_start_batch_analysis

Start a batch analysis job using Azure OpenAI

Smartsheet MCP Server_cancel_batch_analysis

Cancel a running batch analysis job

Smartsheet MCP Server_get_job_status

Get the status of a batch analysis job

Smartsheet MCP Server_smartsheet_bulk_update

Perform conditional bulk updates on a Smartsheet

Git MCP Server_init

Initialize a new Git repository

Git MCP Server_clone

Clone a repository

Git MCP Server_status

Get repository status

Git MCP Server_add

Stage files

Git MCP Server_commit

Create a commit

Git MCP Server_push

Push commits to remote

Git MCP Server_pull

Pull changes from remote

Git MCP Server_branch_list

List all branches

Git MCP Server_branch_create

Create a new branch

Git MCP Server_branch_delete

Delete a branch

Git MCP Server_checkout

Switch branches or restore working tree files

Git MCP Server_tag_list

List tags

Git MCP Server_tag_create

Create a tag

Git MCP Server_tag_delete

Delete a tag

Git MCP Server_remote_list

List remotes

Git MCP Server_remote_add

Add a remote

Git MCP Server_remote_remove

Remove a remote

Git MCP Server_stash_list

List stashes

Git MCP Server_stash_save

Save changes to stash

Git MCP Server_stash_pop

Apply and remove a stash

Git MCP Server_bulk_action

Execute multiple Git operations in sequence. This is the preferred way to execute multiple operations.

GitHub Support Assistant_find-similar-issues

Find GitHub issues similar to a new issue description

Supabase MCP Server_query_table

Query a specific table with schema selection and where clause support

Supabase MCP Server_generate_types

Generate TypeScript types for your Supabase database schema

Kagi MCP Server_search

Perform web search based on one or more queries. Results are from all queries given. They are numbered continuously, so that a user may be able to refer to a result by a specific number.

Cargo Doc MCP Server_get_crate_doc

Get crate's main documentation page. Useful for unresolved imports (e.g. use get_crate_doc when seeing 'unresolved import tokio:') or understanding crate features.

Cargo Doc MCP Server_list_symbols

List all symbols in a crate. Use when implementing traits or exploring available types. Shows structs, enums, traits with their paths.

Cargo Doc MCP Server_search_doc

Search crate docs for specific features, error messages, or usage examples. Helps debug compilation issues or learn new APIs.

DexScreener MCP Server_get_latest_token_profiles

Get the latest token profiles

DexScreener MCP Server_get_latest_boosted_tokens

Get the latest boosted tokens

DexScreener MCP Server_get_top_boosted_tokens

Get tokens with most active boosts

DexScreener MCP Server_get_token_orders

Check orders paid for a specific token

DexScreener MCP Server_get_pairs_by_chain_and_address

Get one or multiple pairs by chain and pair address

DexScreener MCP Server_get_pairs_by_token_addresses

Get one or multiple pairs by token address (max 30)

DexScreener MCP Server_search_pairs

Search for pairs matching query

Git MCP_get_last_git_tag

Find the last git tag in the repository

Args: repo_name: Name of the git repository Returns: Dictionary containing tag version and date
Git MCP_list_commits_since_last_tag

List commit messages since main HEAD and the last git tag

Args: repo_name: Name of the git repository max_count: Maximum number of commits to return Returns: List of dictionaries containing commit hash, author, date, and message
Git MCP_list_repositories

List all git repositories in the configured path

Returns: List of repository names
Git MCP_create_git_tag

Create a new git tag in the repository

Args: repo_name: Name of the git repository tag_name: Name of the tag to create message: Optional message for annotated tag Returns: Dictionary containing status and tag information
Git MCP_push_git_tag

Push a git tag to the default remote

Args: repo_name: Name of the git repository tag_name: Name of the tag to push Returns: Dictionary containing status and information about the operation
Git MCP_refresh_repository

Refresh repository by checking out main branch and pulling all remotes

Args: repo_name: Name of the git repository Returns: Dictionary containing status and information about the operation
Nefino MCP Server_StartNewsRetrieval

Start an asynchronous news retrieval task for a place

Nefino MCP Server_GetNewsResults

Get the results of a previously started news retrieval task

Google Search Console MCP Server_list_sites

List all sites in Google Search Console

Google Search Console MCP Server_search_analytics

Get search performance data from Google Search Console

Google Search Console MCP Server_index_inspect

Inspect a URL to see if it is indexed or can be indexed

Google Search Console MCP Server_list_sitemaps

List sitemaps for a site in Google Search Console

Google Search Console MCP Server_get_sitemap

Get a sitemap for a site in Google Search Console

Google Search Console MCP Server_submit_sitemap

Submit a sitemap for a site in Google Search Console

Jira MCP Server_execute_jql

Execute a JQL query on Jira on the api /rest/api/3/search

Jira MCP Server_get_only_ticket_name_and_description

Get the name and description of the requested tickets on the api /rest/api/3/search

Jira MCP Server_create_ticket

Create a ticket on Jira on the api /rest/api/3/issue

Jira MCP Server_list_projects

List all the projects on Jira on the api /rest/api/3/project

Jira MCP Server_delete_ticket

Delete a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}

Jira MCP Server_edit_ticket

Edit a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}

Jira MCP Server_get_all_statuses

Get all the status on Jira on the api /rest/api/3/status

Jira MCP Server_assign_ticket

Assign a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}/assignee

Jira MCP Server_query_assignable

Query assignables to a ticket on Jira on the api /rest/api/3/user/assignable/search?project={project-name}

Jira MCP Server_add_attachment_from_public_url

Add an attachment from a public url to a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}/attachments

Jira MCP Server_add_attachment_from_confluence

Add an attachment to a ticket on Jira from a Confluence page by its name on the api /rest/api/3/issue/{issueIdOrKey}/attachments

UniProt MCP Server_get_protein_info

Get protein function and sequence information from UniProt using an accession No.

UniProt MCP Server_get_batch_protein_info

Get protein information for multiple accession No.

MCP2Serial_set_pwm

Execute set_pwm command

MCP2Serial_get_pico_info

Execute get_pico_info command

MCP2Serial_led_control

Execute led_control command

Supavec MCP Server_fetch-embeddings

Fetch embeddings for a file by ID and query

Claude MCP Trello_trello_get_cards_by_list

Retrieves a list of cards contained in the specified list ID.

Claude MCP Trello_trello_get_lists

Retrieves all lists in the board.

Claude MCP Trello_trello_get_recent_activity

Retrieves the most recent board activity. The 'limit' argument can specify how many to retrieve.

Claude MCP Trello_trello_add_card

Adds a card to the specified list.

Claude MCP Trello_trello_update_card

Updates the content of a card.

Claude MCP Trello_trello_archive_card

Archives (closes) the specified card.

Claude MCP Trello_trello_add_list

Adds a new list to the board.

Claude MCP Trello_trello_archive_list

Archives (closes) the specified list.

Claude MCP Trello_trello_get_my_cards

Retrieves all cards related to your account.

Claude MCP Trello_trello_search_all_boards

Performs a cross-board search across all boards in the workspace (organization) (depending on plan/permissions).

Knowledge Base MCP Server_list_knowledge_bases

Lists the available knowledge bases.

Knowledge Base MCP Server_retrieve_knowledge

Retrieves similar chunks from the knowledge base based on a query. Optionally, if a knowledge base is specified, only that one is searched; otherwise, all available knowledge bases are considered. By default, at most 10 documents are returned with a score below a threshold of 2. A different threshold can optionally be provided.

Unipile MCP Server_unipile_get_accounts

Get all connected messaging accounts from supported platforms: Mobile, Mail, WhatsApp, LinkedIn, Slack, Twitter, Telegram, Instagram, Messenger. Returns account details including connection parameters, ID, name, creation date, signatures, groups, and sources.

Unipile MCP Server_unipile_get_recent_messages

Get recent messages from all chats associated with a specific account. Supports messages from: Mobile, Mail, WhatsApp, LinkedIn, Slack, Twitter, Telegram, Instagram, Messenger. Returns message details including text content, sender info, timestamps, attachments, reactions, quoted messages, and metadata.

Unipile MCP Server_unipile_get_emails

Get recent emails from a specific account. Returns email details including subject, body, sender, recipients, attachments, and metadata.

Barnsworthburning MCP_search

Search barnsworthburning.net for the given query

s3-tools_list-s3-buckets

List all S3 buckets in your AWS account

Figma MCP Server_add_figma_file

Add a Figma file to your context

Figma MCP Server_view_node

Get a thumbnail for a specific node in a Figma file

Figma MCP Server_read_comments

Get all comments on a Figma file

Figma MCP Server_post_comment

Post a comment on a node in a Figma file

Figma MCP Server_reply_to_comment

Reply to an existing comment in a Figma file

Face Generator MCP Server_generate_face

Generate and save a human face image

Strava MCP Server_get_activities
Get the authenticated athlete's recent activities. Args: limit: Maximum number of activities to return (default: 10) Returns: Dictionary containing activities data
Strava MCP Server_get_activities_by_date_range
Get activities within a specific date range. Args: start_date: Start date in ISO format (YYYY-MM-DD) end_date: End date in ISO format (YYYY-MM-DD) limit: Maximum number of activities to return (default: 30) Returns: Dictionary containing activities data
Strava MCP Server_get_activity_by_id
Get detailed information about a specific activity. Args: activity_id: ID of the activity to retrieve Returns: Dictionary containing activity details
Strava MCP Server_get_recent_activities
Get activities from the past X days. Args: days: Number of days to look back (default: 7) limit: Maximum number of activities to return (default: 10) Returns: Dictionary containing activities data
MCP Terminal Server_run_command

Run a terminal command with security controls.

MCP Server Memos_list_memo_tags

List all existing memo tags

MCP Server Memos_search_memo

Search for memos

MCP Server Memos_create_memo

Create a new memo

MCP Server Memos_get_memo

Get a memo

Shopify Python MCP Server_create_product-
Shopify Python MCP Server_update_product-
Shopify Python MCP Server_delete_product-
Shopify Python MCP Server_list_products-
Shopify Python MCP Server_get_product-
Instagram MCP Server_get_instagram_posts

Get recent posts from an Instagram profile using existing Chrome login

Framer Plugin MCP Server_create_plugin

Create a new Framer plugin project with web3 capabilities

Framer Plugin MCP Server_build_plugin

Build a Framer plugin project

MCP Human Loop Server_evaluate_need_for_human

Evaluate if a task requires human intervention

Together AI Image Server_generate_image

Generate image from text prompt using Together AI API

Linear MCP Server_linear_search_issues

Search issues with flexible filtering.

Args: query: Text to search in title/description team_id: Filter by team status: Filter by status assignee_id: Filter by assignee labels: Filter by labels priority: Filter by priority estimate: Filter by estimate points include_archived: Include archived issues limit: Max results (default: 10)
Linear MCP Server_linear_get_user_issues

Get issues assigned to a user.

Args: user_id: User ID (omit for authenticated user) include_archived: Include archived issues limit: Max results (default: 50)
Linear MCP Server_linear_add_comment

Add a comment to an issue.

Args: issue_id: Issue ID to comment on body: Comment text (markdown supported) create_as_user: Custom username display_icon_url: Custom avatar URL
Linear MCP Server_linear_create_issue

Create a new Linear issue.

Args: title: Issue title team_id: Team ID to create issue in description: Issue description (markdown supported) priority: Priority level (1=urgent, 4=low) status: Initial status name
Linear MCP Server_linear_update_issue

Update an existing Linear issue.

Args: id: Issue ID to update title: New title description: New description priority: New priority (1=urgent, 4=low) status: New status name
ClaudeKeep_store_message

Store a chat message

ClaudeKeep_save_chat

Save the current chat

Chrome Debug MCP Server_hover

Hover over an element

Chrome Debug MCP Server_click

Click an element on the page

Chrome Debug MCP Server_type

Type text into an input field

Chrome Debug MCP Server_select

Select an option in a dropdown

Chrome Debug MCP Server_launch_chrome

Launch Chrome in debug mode

Chrome Debug MCP Server_get_console_logs

Get console logs from Chrome

Chrome Debug MCP Server_evaluate

Evaluate JavaScript in Chrome

Chrome Debug MCP Server_wait_for_selector

Wait for an element to appear on the page

Chrome Debug MCP Server_screenshot

Take a screenshot of the page or element

Chrome Debug MCP Server_navigate

Navigate to a URL

Chrome Debug MCP Server_get_text

Get text content of an element

Chrome Debug MCP Server_get_attribute

Get attribute value of an element

Chrome Debug MCP Server_set_viewport

Set the viewport size and properties

MCP-DBLP_get_author_publications

Retrieve publication details for a specific author with fuzzy matching. Arguments:

  • author_name (string, required): Full or partial author name (case-insensitive).
  • similarity_threshold (number, required): A float between 0 and 1 where 1.0 means an exact match.
  • max_results (number, optional): Maximum number of publications to return. Default is 20.
  • include_bibtex (boolean, optional): Whether to include BibTeX entries in the results. Default is false. Returns a dictionary with keys: name, publication_count, publications, and stats (which includes top venues, years, and types).
MCP-DBLP_get_venue_info

Retrieve detailed information about a publication venue. Arguments:

  • venue_name (string, required): Venue name or abbreviation (e.g., 'ICLR' or full name). Returns a dictionary with fields: abbreviation, name, publisher, type, and category. Note: Some fields may be empty if DBLP does not provide the information.
MCP-DBLP_search

Search DBLP for publications using a boolean query string. Arguments:

  • query (string, required): A query string that may include boolean operators 'and' and 'or' (case-insensitive). For example, 'Swin and Transformer'. Parentheses are not supported.
  • max_results (number, optional): Maximum number of publications to return. Default is 10.
  • year_from (number, optional): Lower bound for publication year.
  • year_to (number, optional): Upper bound for publication year.
  • venue_filter (string, optional): Case-insensitive substring filter for publication venues (e.g., 'iclr').
  • include_bibtex (boolean, optional): Whether to include BibTeX entries in the results. Default is false. Returns a list of publication objects including title, authors, venue, year, type, doi, ee, and url.
MCP-DBLP_calculate_statistics

Calculate statistics from a list of publication results. Arguments:

  • results (array, required): An array of publication objects, each with at least 'title', 'authors', 'venue', and 'year'. Returns a dictionary with:
  • total_publications: Total count.
  • time_range: Dictionary with 'min' and 'max' publication years.
  • top_authors: List of tuples (author, count) sorted by count.
  • top_venues: List of tuples (venue, count) sorted by count (empty venue is treated as '(empty)').
MCP-DBLP_export_bibtex

Export BibTeX entries from a collection of HTML hyperlinks. Arguments:

  • links (string, required): HTML string containing one or more <a href=biburl>key</a> links. The href attribute should contain a URL to a BibTeX file, and the link text is used as the citation key. Example input with three links: "<a href=https://dblp.org/rec/journals/example1.bib>Smith2023</a> <a href=https://dblp.org/rec/conf/example2.bib>Jones2022</a> <a href=https://dblp.org/rec/journals/example3.bib>Brown2021</a>" Process:
  • For each link, the tool fetches the BibTeX content from the URL
  • The citation key in each BibTeX entry is replaced with the key from the link text
  • All entries are combined and saved to a .bib file with a timestamp filename Returns:
  • A message with the full path to the saved .bib file
MCP-DBLP_fuzzy_title_search

Search DBLP for publications with fuzzy title matching. Arguments:

  • title (string, required): Full or partial title of the publication (case-insensitive).
  • similarity_threshold (number, required): A float between 0 and 1 where 1.0 means an exact match.
  • max_results (number, optional): Maximum number of publications to return. Default is 10.
  • year_from (number, optional): Lower bound for publication year.
  • year_to (number, optional): Upper bound for publication year.
  • venue_filter (string, optional): Case-insensitive substring filter for publication venues.
  • include_bibtex (boolean, optional): Whether to include BibTeX entries in the results. Default is false. Returns a list of publication objects sorted by title similarity score.
mcp-cli-exec MCP Server_cli-exec-raw

Execute a raw CLI command and return structured output

mcp-cli-exec MCP Server_cli-exec

Execute one or more CLI commands in a specific working directory

Valyu MCP Server_knowledge

Search proprietary and/or web sources for information based on the supplied query.

Valyu MCP Server_feedback

Submit user feedback and sentiment for a transaction.

JSON Resume MCP Server_github_analyze_codebase

This is a tool from the github MCP server. Analyzes the current codebase and returns information about technologies, languages, and recent commits

JSON Resume MCP Server_github_check_resume

This is a tool from the github MCP server. Checks if a GitHub user has a JSON Resume and returns its information

JSON Resume MCP Server_github_enhance_resume_with_project

This is a tool from the github MCP server. Enhances a GitHub user's JSON Resume with information about their current project

Image Generation MCP Server_generate_image

Generate an image using Together AI API

MCP Documentation Service_generate_documentation_navigation

Generate a navigation structure from the markdown documents in the docs directory. Returns a JSON structure that can be used for navigation menus.

MCP Documentation Service_check_documentation_health

Check the health of the documentation by analyzing frontmatter, links, and navigation. Returns a report with issues and a health score.

MCP Documentation Service_search_documents

Search for markdown documents containing specific text in their content or frontmatter. Returns the relative paths to matching documents.

MCP Documentation Service_read_document

Read a markdown document from the docs directory. Returns the document content including frontmatter. Use this tool when you need to examine the contents of a single document.

MCP Documentation Service_write_document

Create a new markdown document or completely overwrite an existing document with new content. Use with caution as it will overwrite existing documents without warning. Can create parent directories if they don't exist.

MCP Documentation Service_edit_document

Make line-based edits to a markdown document. Each edit replaces exact line sequences with new content. Returns a git-style diff showing the changes made.

MCP Documentation Service_list_documents

List all markdown documents in the docs directory or a subdirectory. Returns the relative paths to all documents.

MCP Documentation Service_create_folder

Create a new folder in the docs directory. Optionally creates a README.md file in the new folder with basic frontmatter.

MCP Documentation Service_move_document

Move a document from one location to another. Optionally updates references to the document in other files.

MCP Documentation Service_rename_document

Rename a document while preserving its location and content. Optionally updates references to the document in other files.

MCP Documentation Service_update_navigation_order

Update the navigation order of a document by modifying its frontmatter.

MCP Documentation Service_create_documentation_section

Create a new navigation section with an index.md file.

MCP Documentation Service_validate_documentation_links

Check for broken internal links in documentation files.

MCP Documentation Service_validate_documentation_metadata

Ensure all documents have required metadata fields.

Anki MCP Server_create_note

Create a new note (Basic or Cloze)

Anki MCP Server_list_decks

List all available Anki decks

Anki MCP Server_create_deck

Create a new Anki deck

Anki MCP Server_batch_create_notes

Create multiple notes at once

Anki MCP Server_search_notes

Search for notes using Anki query syntax

Anki MCP Server_get_note_info

Get detailed information about a note

Anki MCP Server_update_note

Update an existing note

Anki MCP Server_delete_note

Delete a note

Anki MCP Server_list_note_types

List all available note types

Anki MCP Server_create_note_type

Create a new note type

MongoDB MCP Server_list_databases

List all databases in the MongoDB server.

MongoDB MCP Server_list_collections

List all collections in a database.

Start here to understand what collections are available before querying.

MongoDB MCP Server_get_schema

Infer schema from a collection by analyzing sample documents.

Best Practice: Use this before querying to understand collection structure.

Example: use_mcp_tool with server_name: "mongodb", tool_name: "get_schema", arguments: { "collection": "users", "sampleSize": 100 }

MongoDB MCP Server_query

Execute a read-only query on a collection using MongoDB query syntax.

Supports both JSON and CSV output formats:

  • Use outputFormat="json" for standard JSON (default)
  • Use outputFormat="csv" for comma-separated values export

Best Practices:

  • Use projections to fetch only needed fields
  • Add limits for large collections
  • Use sort for consistent ordering

Example - Standard Query: use_mcp_tool with server_name: "mongodb", tool_name: "query", arguments: { "collection": "users", "filter": { "age": { "$gte": 21 } }, "projection": { "name": 1, "email": 1 }, "sort": { "name": 1 }, "limit": 100 }

Example - CSV Export: use_mcp_tool with server_name: "mongodb", tool_name: "query", arguments: { "collection": "users", "filter": { "active": true }, "outputFormat": "csv", "formatOptions": { "includeHeaders": true, "delimiter": "," } }

MongoDB MCP Server_aggregate

Execute a read-only aggregation pipeline on a collection.

Supported Stages:

  • $match: Filter documents
  • $group: Group documents by a key
  • $sort: Sort documents
  • $project: Shape the output
  • $lookup: Perform left outer joins
  • $unwind: Deconstruct array fields

Unsafe/Blocked Stages:

  • $out: Write results to collection
  • $merge: Merge results into collection
  • $addFields: Add new fields
  • $set: Set field values
  • $unset: Remove fields
  • $replaceRoot: Replace document structure
  • $replaceWith: Replace document

Example - User Statistics by Role: use_mcp_tool with server_name: "mongodb", tool_name: "aggregate", arguments: { "collection": "users", "pipeline": [ { "$match": { "active": true } }, { "$group": { "_id": "$role", "count": { "$sum": 1 }, "avgAge": { "$avg": "$age" } }}, { "$sort": { "count": -1 } } ], "limit": 100 }

Example - Posts with Author Details: use_mcp_tool with server_name: "mongodb", tool_name: "aggregate", arguments: { "collection": "posts", "pipeline": [ { "$match": { "published": true } }, { "$lookup": { "from": "users", "localField": "authorId", "foreignField": "_id", "as": "author" }}, { "$unwind": "$author" }, { "$project": { "title": 1, "authorName": "$author.name", "publishDate": 1 }} ] }

MongoDB MCP Server_get_collection_stats

Get detailed statistics about a collection.

Returns information about:

  • Document count and size
  • Storage metrics
  • Index sizes and usage
  • Average document size
  • Padding factor
MongoDB MCP Server_get_indexes

Get information about indexes on a collection.

Returns details about:

  • Index names and fields
  • Index types (single field, compound, text, etc.)
  • Index sizes
  • Index options
  • Usage statistics
MongoDB MCP Server_explain_query

Get the execution plan for a query.

Helps understand:

  • How MongoDB will execute the query
  • Which indexes will be used
  • Number of documents examined
  • Execution stages and timing

Use this to optimize slow queries.

MongoDB MCP Server_get_distinct_values

Get distinct values for a field in a collection.

Useful for:

  • Understanding data distribution
  • Finding unique categories
  • Data quality checks
  • Identifying outliers

Example: use_mcp_tool with server_name: "mongodb", tool_name: "get_distinct_values", arguments: { "collection": "users", "field": "role", "filter": { "active": true } }

MongoDB MCP Server_sample_data

Get a random sample of documents from a collection.

Supports both JSON and CSV output formats:

  • Use outputFormat="json" for standard JSON (default)
  • Use outputFormat="csv" for comma-separated values export

Useful for:

  • Exploratory data analysis
  • Testing with representative data
  • Understanding data distribution
  • Performance testing with realistic data subsets

Example - JSON Sample: use_mcp_tool with server_name: "mongodb", tool_name: "sample_data", arguments: { "collection": "users", "size": 50 }

Example - CSV Export: use_mcp_tool with server_name: "mongodb", tool_name: "sample_data", arguments: { "collection": "users", "size": 100, "outputFormat": "csv", "formatOptions": { "includeHeaders": true, "delimiter": "," } }

MongoDB MCP Server_count_documents

Count documents in a collection that match a filter.

Benefits:

  • More efficient than retrieving full documents
  • Good for understanding data volume
  • Can help planning query strategies
  • Optimize pagination implementation

Example: use_mcp_tool with server_name: "mongodb", tool_name: "count_documents", arguments: { "collection": "users", "filter": { "active": true, "age": { "$gte": 21 } } }

MongoDB MCP Server_find_by_ids

Find multiple documents by their IDs in a single request.

Advantages:

  • More efficient than multiple single document lookups
  • Preserves ID order in results when possible
  • Can filter specific fields with projection
  • Handles both string and ObjectId identifiers

Example: use_mcp_tool with server_name: "mongodb", tool_name: "find_by_ids", arguments: { "collection": "products", "ids": ["5f8d0f3c", "5f8d0f3d", "5f8d0f3e"], "idField": "_id", "projection": { "name": 1, "price": 1 } }

MongoDB MCP Server_geo_query

Execute geospatial queries on a MongoDB collection.

Supports:

  • Finding points near a location
  • Finding documents within a polygon, circle, or box
  • Calculating distances between points
  • GeoJSON and legacy coordinate pair formats

Requirements:

  • Collection must have a geospatial index (2dsphere recommended)
  • Coordinates should follow MongoDB conventions (longitude first, then latitude)

Examples:

  1. Find locations near a point (2 miles radius): use_mcp_tool with server_name: "mongodb", tool_name: "geo_query", arguments: { "collection": "restaurants", "operation": "near", "point": [-73.9667, 40.78], "maxDistance": 3218.69, // 2 miles in meters "distanceField": "distance" }
  2. Find locations within a polygon: use_mcp_tool with server_name: "mongodb", tool_name: "geo_query", arguments: { "collection": "properties", "operation": "geoWithin", "geometry": { "type": "Polygon", "coordinates": [ [[-73.958, 40.8], [-73.94, 40.79], [-73.95, 40.76], [-73.97, 40.76], [-73.958, 40.8]] ] } }
MongoDB MCP Server_text_search

Perform a full-text search on a collection.

Requirements:

  • Collection must have a text index
  • Only one text index per collection is allowed

Features:

  • Supports phrases and keywords
  • Word stemming
  • Stop words removal
  • Text score ranking

Example: use_mcp_tool with server_name: "mongodb", tool_name: "text_search", arguments: { "collection": "articles", "searchText": "mongodb database", "filter": { "published": true }, "limit": 10, "includeScore": true }

Everything Search MCP Server_search

Search for files using Everything Search

Azure DevOps MCP Server_list_organizations

List all Azure DevOps organizations accessible to the current authentication

Azure DevOps MCP Server_list_projects

List all projects in an organization

Azure DevOps MCP Server_get_project

Get details of a specific project

Azure DevOps MCP Server_get_project_details

Get comprehensive details of a project including process, work item types, and teams

Azure DevOps MCP Server_get_work_item

Get details of a specific work item

Azure DevOps MCP Server_list_work_items

List work items in a project

Azure DevOps MCP Server_create_work_item

Create a new work item

Azure DevOps MCP Server_update_work_item

Update an existing work item

Azure DevOps MCP Server_manage_work_item_link

Add or remove a link between work items

Azure DevOps MCP Server_get_repository

Get details of a specific repository

Azure DevOps MCP Server_get_repository_details

Get detailed information about a repository including statistics and refs

Azure DevOps MCP Server_list_repositories

List repositories in a project

Azure DevOps MCP Server_search_code

Search for code across repositories in a project

Azure DevOps MCP Server_search_wiki

Search for content across wiki pages in a project

Azure DevOps MCP Server_search_work_items

Search for work items across projects in Azure DevOps

HH JIRA MCP Server_search_team_active_portfolios-
HH JIRA MCP Server_create_task-
HH JIRA MCP Server_set_defence_checked-
Macrostrat MCP Server_find-columns

Query Macrostrat stratigraphic columns

Macrostrat MCP Server_find-units

Query Macrostrat geologic units

Macrostrat MCP Server_defs

Routes giving access to standard fields and dictionaries used in Macrostrat

Macrostrat MCP Server_defs-autocomplete

Quickly retrieve all definitions matching a query. Limited to 100 results

Macrostrat MCP Server_mineral-info

Get information about a mineral, use one property

Macrostrat MCP Server_timescale

Get information about a time period

Spotify MCP Server_SpotifyPlayback

Manages the current playback with the following actions: - get: Get information about user's current track. - start: Starts playing new item or resumes current playback if called with no uri. - pause: Pauses current playback. - skip: Skips current track.

Spotify MCP Server_SpotifySearch

Search for tracks, albums, artists, or playlists on Spotify.

Spotify MCP Server_SpotifyQueue

Manage the playback queue - get the queue or add tracks.

Spotify MCP Server_SpotifyGetInfo

Get detailed information about a Spotify item (track, album, artist, or playlist).

TaskWarrior MCP Server_get_next_tasks

Get a list of all pending tasks

TaskWarrior MCP Server_mark_task_done

Mark a task as done (completed)

TaskWarrior MCP Server_add_task

Add a new task

SourceSync.ai MCP Server_validateApiKey

Validates the API key by attempting to list namespaces. Returns the list of namespaces if successful.

SourceSync.ai MCP Server_createNamespace

Creates a new namespace with the provided configuration. Requires a name, file storage configuration, vector storage configuration, and embedding model configuration.

SourceSync.ai MCP Server_listNamespaces

Lists all namespaces available for the current API key and optional tenant ID.

SourceSync.ai MCP Server_getNamespace

Retrieves a specific namespace by its ID.

SourceSync.ai MCP Server_updateNamespace

Updates an existing namespace with the provided configuration parameters.

SourceSync.ai MCP Server_deleteNamespace

Permanently deletes a namespace by its ID.

SourceSync.ai MCP Server_ingestText

Ingests raw text content into the namespace. Supports optional metadata and chunk configuration.

SourceSync.ai MCP Server_ingestFile

Ingests a file into the namespace. Supports various file formats with automatic parsing.

SourceSync.ai MCP Server_ingestUrls

Ingests content from a list of URLs. Supports scraping options and metadata.

SourceSync.ai MCP Server_ingestSitemap

Ingests content from a website using its sitemap.xml. Supports path filtering and link limits.

SourceSync.ai MCP Server_ingestWebsite

Crawls and ingests content from a website recursively. Supports depth control and path filtering.

SourceSync.ai MCP Server_ingestConnector

Ingests all documents in the connector that are in backlog or failed status. No need to provide the document ids or file ids for the ingestion. Ids are already in the backlog when picked thorough the picker. If not, the user has to go through the authorization flow again, where they will be asked to pick the documents again.

SourceSync.ai MCP Server_getIngestJobRunStatus

Checks the status of a previously submitted ingestion job.

SourceSync.ai MCP Server_fetchDocuments

Fetches documents from the namespace based on filter criteria. Supports pagination and including specific document properties.

SourceSync.ai MCP Server_updateDocuments

Updates metadata for documents that match the specified filter criteria.

SourceSync.ai MCP Server_deleteDocuments

Permanently deletes documents that match the specified filter criteria.

SourceSync.ai MCP Server_resyncDocuments

Reprocesses documents that match the specified filter criteria. Useful for updating after schema changes.

SourceSync.ai MCP Server_semanticSearch

Performs semantic search across the namespace to find relevant content based on meaning rather than exact keyword matches.

SourceSync.ai MCP Server_hybridSearch

Performs a combined keyword and semantic search, balancing between exact matches and semantic similarity. Requires hybridConfig with weights for both search types.

SourceSync.ai MCP Server_createConnection

Creates a new connection to a specific source. The connector parameter should be a valid SourceSync connector enum value. The clientRedirectUrl parameter is optional and can be used to specify a custom redirect URL for the connection. This will give you a authorization url which you can redirect the user to. The user will then be asked to pick the documents they want to ingest.

SourceSync.ai MCP Server_listConnections

Lists all connections for the current namespace, optionally filtered by connector type.

SourceSync.ai MCP Server_getConnection

Retrieves details for a specific connection by its ID.

SourceSync.ai MCP Server_updateConnection

Updates a connection to a specific source. The connector parameter should be a valid SourceSync connector enum value. The clientRedirectUrl parameter is optional and can be used to specify a custom redirect URL for the connection. This will give you a authorization url which you can redirect the user to. The user will then be asked to pick the documents they want to ingest. This is useful if you want to update the connection to a different source or if you want to update the clientRedirectUrl or if you want to pick a different or new set of documents.

SourceSync.ai MCP Server_revokeConnection

Revokes access for a specific connection, removing the integration with the external service.

SourceSync.ai MCP Server_fetchUrlContent

Fetches the content of a URL. Particularly useful for fetching parsed text file URLs.

MCP Ethers Wallet_getSupportedNetworks

Get a list of all supported networks and their configurations. Shows which network is the default (used when no provider is specified). Call this first to discover available networks before using other network-related functions.

MCP Ethers Wallet_checkWalletExists

Check if there is a wallet configured on the server. Returns basic wallet info like address but never exposes private keys.

MCP Ethers Wallet_getWalletBalance

Get the ETH balance of a wallet

MCP Ethers Wallet_getERC20Balance

Get the ERC20 token balance of a wallet

MCP Ethers Wallet_getWalletTransactionCount

Get the number of transactions ever sent by an address

MCP Ethers Wallet_getBlockNumber

Get the current block number

MCP Ethers Wallet_getBlockDetails

Get details about a block

MCP Ethers Wallet_getTransactionDetails

Get details about a transaction

MCP Ethers Wallet_getGasPrice

Get the current gas price

MCP Ethers Wallet_getFeeData

Get the current network fee data

MCP Ethers Wallet_getContractCode

Get a contract's bytecode

MCP Ethers Wallet_lookupAddress

Get the ENS name for an address

MCP Ethers Wallet_resolveName

Get the address for an ENS name

MCP Ethers Wallet_formatEther

Convert a wei value to a decimal string in ether

MCP Ethers Wallet_parseEther

Convert an ether value to wei

MCP Ethers Wallet_formatUnits

Convert a value to a decimal string with specified units

MCP Ethers Wallet_parseUnits

Convert a decimal string to its smallest unit representation

MCP Ethers Wallet_sendTransaction

Send ETH from the server's wallet to a recipient

MCP Ethers Wallet_signMessage

Sign a message using the server's wallet

MCP Ethers Wallet_contractCall

Call a view/pure method on a smart contract (read-only operations)

MCP Ethers Wallet_contractCallView

Call a view/pure method on a smart contract (read-only operations)

MCP Ethers Wallet_contractCallWithEstimate

Call a method on a smart contract with automatic gas estimation

MCP Ethers Wallet_contractSendTransaction

Call a method on a smart contract and send a transaction with custom parameters

MCP Ethers Wallet_contractSendTransactionWithEstimate

Call a method on a smart contract and send a transaction with automatic gas estimation

MCP Ethers Wallet_contractCallWithOverrides

Call a method on a smart contract with advanced options

MCP Ethers Wallet_contractSendTransactionWithOverrides

Call a method on a smart contract and send a transaction with custom parameters

MCP Ethers Wallet_sendRawTransaction

Send a raw transaction

MCP Ethers Wallet_queryLogs

Query historical logs

MCP Ethers Wallet_contractEvents

Query historical events from a contract

MCP Ethers Wallet_sendTransactionWithOptions

Send a transaction with advanced options including gas limit, gas price, and nonce

MCP Ethers Wallet_getTransactionsByBlock

Get details about transactions in a specific block.

ABAP-ADT-API MCP-Server_hasTransportConfig

Check if transport configuration exists

ABAP-ADT-API MCP-Server_transportConfigurations

Retrieves transport configurations.

ABAP-ADT-API MCP-Server_getTransportConfiguration

Retrieves a specific transport configuration.

ABAP-ADT-API MCP-Server_fixProposals

Retrieves fix proposals.

ABAP-ADT-API MCP-Server_login

Authenticate with ABAP system

ABAP-ADT-API MCP-Server_logout

Terminate ABAP session

ABAP-ADT-API MCP-Server_dropSession

Clear local session cache

ABAP-ADT-API MCP-Server_transportInfo

Get transport information for an object source

ABAP-ADT-API MCP-Server_createTransport

Create a new transport request

ABAP-ADT-API MCP-Server_setTransportsConfig

Sets transport configurations.

ABAP-ADT-API MCP-Server_createTransportsConfig

Creates transport configurations.

ABAP-ADT-API MCP-Server_userTransports

Retrieves transports for a user.

ABAP-ADT-API MCP-Server_transportsByConfig

Retrieves transports by configuration.

ABAP-ADT-API MCP-Server_transportDelete

Deletes a transport.

ABAP-ADT-API MCP-Server_transportRelease

Releases a transport.

ABAP-ADT-API MCP-Server_transportSetOwner

Sets the owner of a transport.

ABAP-ADT-API MCP-Server_transportAddUser

Adds a user to a transport.

ABAP-ADT-API MCP-Server_systemUsers

Retrieves a list of system users.

ABAP-ADT-API MCP-Server_transportReference

Retrieves a transport reference.

ABAP-ADT-API MCP-Server_objectStructure

Get object structure details

ABAP-ADT-API MCP-Server_searchObject

Search for objects

ABAP-ADT-API MCP-Server_findObjectPath

Find path for an object

ABAP-ADT-API MCP-Server_fixEdits

Applies fix edits.

ABAP-ADT-API MCP-Server_unLock

Unlock an object

ABAP-ADT-API MCP-Server_getObjectSource

Retrieves source code for ABAP objects

ABAP-ADT-API MCP-Server_objectTypes

Retrieves object types.

ABAP-ADT-API MCP-Server_reentranceTicket

Retrieves a reentrance ticket.

ABAP-ADT-API MCP-Server_classIncludes

Get class includes structure

ABAP-ADT-API MCP-Server_classComponents

List class components

ABAP-ADT-API MCP-Server_createTestInclude

Create test include for class

ABAP-ADT-API MCP-Server_syntaxCheckCode

Perform ABAP syntax check with source code

ABAP-ADT-API MCP-Server_syntaxCheckCdsUrl

Perform ABAP syntax check with CDS URL

ABAP-ADT-API MCP-Server_codeCompletion

Get code completion suggestions

ABAP-ADT-API MCP-Server_findDefinition

Find symbol definition

ABAP-ADT-API MCP-Server_usageReferences

Find symbol references

ABAP-ADT-API MCP-Server_syntaxCheckTypes

Retrieves syntax check types.

ABAP-ADT-API MCP-Server_codeCompletionFull

Performs full code completion.

ABAP-ADT-API MCP-Server_runClass

Runs a class.

ABAP-ADT-API MCP-Server_codeCompletionElement

Retrieves code completion element information.

ABAP-ADT-API MCP-Server_usageReferenceSnippets

Retrieves usage reference snippets.

ABAP-ADT-API MCP-Server_fragmentMappings

Retrieves fragment mappings.

ABAP-ADT-API MCP-Server_abapDocumentation

Retrieves ABAP documentation.

ABAP-ADT-API MCP-Server_lock

Lock an object

ABAP-ADT-API MCP-Server_setObjectSource

Sets source code for ABAP objects

ABAP-ADT-API MCP-Server_deleteObject

Deletes an ABAP object from the system

ABAP-ADT-API MCP-Server_activateObjects

Activate ABAP objects using object references

ABAP-ADT-API MCP-Server_activateByName

Activate an ABAP object using name and URL

ABAP-ADT-API MCP-Server_inactiveObjects

Get list of inactive objects

ABAP-ADT-API MCP-Server_objectRegistrationInfo

Get registration information for an ABAP object

ABAP-ADT-API MCP-Server_validateNewObject

Validate parameters for a new ABAP object

ABAP-ADT-API MCP-Server_createObject

Create a new ABAP object

ABAP-ADT-API MCP-Server_nodeContents

Retrieves the contents of a node in the ABAP repository tree.

ABAP-ADT-API MCP-Server_mainPrograms

Retrieves the main programs for a given include.

ABAP-ADT-API MCP-Server_featureDetails

Retrieves details for a given feature.

ABAP-ADT-API MCP-Server_collectionFeatureDetails

Retrieves details for a given collection feature.

ABAP-ADT-API MCP-Server_findCollectionByUrl

Finds a collection by its URL.

ABAP-ADT-API MCP-Server_loadTypes

Loads object types.

ABAP-ADT-API MCP-Server_adtDiscovery

Performs ADT discovery.

ABAP-ADT-API MCP-Server_adtCoreDiscovery

Performs ADT core discovery.

ABAP-ADT-API MCP-Server_adtCompatibiliyGraph

Retrieves the ADT compatibility graph.

ABAP-ADT-API MCP-Server_unitTestRun

Runs unit tests.

ABAP-ADT-API MCP-Server_unitTestEvaluation

Evaluates unit test results.

ABAP-ADT-API MCP-Server_unitTestOccurrenceMarkers

Retrieves unit test occurrence markers.

MCP LLMS.txt Explorer_check_website

Check if a website has llms.txt files

MCP LLMS.txt Explorer_list_websites

List known websites with llms.txt files

MCP DuckDB Knowledge Graph Memory Server_open_nodes

Open specific nodes in the knowledge graph by their names

MCP DuckDB Knowledge Graph Memory Server_delete_relations

Delete multiple relations from the knowledge graph

MCP DuckDB Knowledge Graph Memory Server_create_entities

Create multiple new entities in the knowledge graph

MCP DuckDB Knowledge Graph Memory Server_create_relations

Create multiple new relations between entities in the knowledge graph. Relations should be in active voice

MCP DuckDB Knowledge Graph Memory Server_add_observations

Add new observations to existing entities in the knowledge graph

MCP DuckDB Knowledge Graph Memory Server_delete_entities

Delete multiple entities and their associated relations from the knowledge graph

MCP DuckDB Knowledge Graph Memory Server_delete_observations

Delete specific observations from entities in the knowledge graph

MCP DuckDB Knowledge Graph Memory Server_search_nodes

Search for nodes in the knowledge graph based on a query

Powerpoint MCP Server_create-presentation

This tool starts the process of generating a new powerpoint presentation with the name given by the user. Use this tool when the user requests to create or generate a new presentation.

Powerpoint MCP Server_generate-and-save-image

Generates an image using a FLUX model and save the image to the specified path. The tool will return a PNG file path. It should be used when the user asks to generate or create an image or a picture.

Powerpoint MCP Server_add-slide-title-only

This tool adds a new title slide to the presentation you are working on. The tool doesn't return anything. It requires the presentation_name to work on.

Powerpoint MCP Server_add-slide-section-header

This tool adds a section header (a.k.a segue) slide to the presentation you are working on. The tool doesn't return anything. It requires the presentation_name to work on.

Powerpoint MCP Server_add-slide-title-content

Add a new slide with a title and content to an existing presentation

Powerpoint MCP Server_add-slide-comparison

Add a new a comparison slide with title and comparison content. Use when you wish to compare two concepts

Powerpoint MCP Server_add-slide-title-with-table

Add a new slide with a title and table containing the provided data

Powerpoint MCP Server_add-slide-title-with-chart

Add a new slide with a title and chart. The chart type will be automatically selected based on the data structure.

Powerpoint MCP Server_add-slide-picture-with-caption

Add a new slide with a picture and caption to an existing presentation

Powerpoint MCP Server_open-presentation

Opens an existing presentation and saves a copy to a new file for backup. Use this tool when the user requests to open a presentation that has already been created.

Powerpoint MCP Server_save-presentation

Save the presentation to a file. Always use this tool at the end of any process that has added slides to a presentation.

MCP2Tavily_search_web

Search the web for information using Tavily API

MCP2Tavily_search_web_info-
MCP2Tavily_get_url_content

Get the content from a specific URL using Tavily API

Args: url (str): The URL to extract content from Returns: str: The extracted content from the URL
MCP2Tavily_get_url_content_info

URL

: url (str): : str: URL
MCP Server Template for Cursor IDE_mcp_fetch

Fetches a website and returns its content

MCP Server Template for Cursor IDE_mood

Ask the server about its mood - it's always happy!

MCP Server Template for Cursor IDE_fetch_railway_docs

Fetches the most recent Railway CLI documentation. Optionally, provide a custom URL.

MCP Server Template for Cursor IDE_fetch_railway_docs_optimized

Fetches the most recent Railway CLI documentation. Optionally, provide a custom URL.

MCP Server Template for Cursor IDE_apply_prompt_fix

Provides a prompt for performing root cause analysis and fixing issues

MCP Server Template for Cursor IDE_apply_prompt_initial

Provides an initial prompt template for starting a new project

MCP Server Template for Cursor IDE_apply_prompt_proceed

Provides a prompt template for proceeding with a task or project

MCP Server Template for Cursor IDE_apply_prompt_change

Provides a prompt for systematically handling change requests

MCP Server Template for Cursor IDE_apply_prompt_fix_linter

Provides a prompt for analyzing and fixing linter errors

MCP Server Template for Cursor IDE_apply_prompt_unit_tests

Provides a prompt for generating unit tests for code

MCP Server Template for Cursor IDE_apply_prompt_infra

Provides a prompt template for laying out system infrastructure and tool stack information

Fetch Browser_fetch_url

Fetch content from a URL with proper error handling and response processing

Fetch Browser_google_search

Execute a Google search and return results in various formats

Travel Planner MCP Server_create_itinerary

Creates a personalized travel itinerary based on user preferences

Travel Planner MCP Server_optimize_itinerary

Optimizes an existing itinerary based on specified criteria

Travel Planner MCP Server_search_attractions

Searches for attractions and points of interest in a specified location

Travel Planner MCP Server_get_transport_options

Retrieves available transportation options between two points

Travel Planner MCP Server_get_accommodations

Searches for accommodation options in a specified location

Farcaster MCP Server_get-user-casts

Get casts from a specific Farcaster user by FID

Farcaster MCP Server_get-channel-casts

Get casts from a specific Farcaster channel

Farcaster MCP Server_get-username-casts

Get casts from a specific Farcaster username

Bybit MCP Server_get_instrument_info

Get detailed instrument information for a specific trading pair

Bybit MCP Server_get_kline

Get kline/candlestick data for a trading pair

Bybit MCP Server_get_market_info

Get detailed market information for trading pairs

Bybit MCP Server_get_order_history

Get order history for the authenticated user

Bybit MCP Server_get_orderbook

Get orderbook (market depth) data for a trading pair

Bybit MCP Server_get_positions

Get positions information for the authenticated user

Bybit MCP Server_get_ticker

Get real-time ticker information for a trading pair

Bybit MCP Server_get_trades

Get recent trades for a trading pair

Bybit MCP Server_get_wallet_balance

Get wallet balance information for the authenticated user

Windows CLI MCP Server_delete_ssh_connection

Delete an existing SSH connection

Windows CLI MCP Server_get_current_directory

Get the current working directory

Windows CLI MCP Server_execute_command

Execute a command in the specified shell (powershell, cmd, or gitbash)

Example usage (PowerShell):

{ "shell": "powershell", "command": "Get-Process | Select-Object -First 5", "workingDir": "C:\Users\username" }

Example usage (CMD):

{ "shell": "cmd", "command": "dir /b", "workingDir": "C:\Projects" }

Example usage (Git Bash):

{ "shell": "gitbash", "command": "ls -la", "workingDir": "/c/Users/username" }
Windows CLI MCP Server_get_command_history

Get the history of executed commands

Example usage:

{ "limit": 5 }

Example response:

[ { "command": "Get-Process", "output": "...", "timestamp": "2024-03-20T10:30:00Z", "exitCode": 0 } ]
Windows CLI MCP Server_ssh_execute

Execute a command on a remote host via SSH

Example usage:

{ "connectionId": "raspberry-pi", "command": "uname -a" }

Configuration required in config.json:

{ "ssh": { "enabled": true, "connections": { "raspberry-pi": { "host": "raspberrypi.local", "port": 22, "username": "pi", "password": "raspberry" } } } }
Windows CLI MCP Server_ssh_disconnect

Disconnect from an SSH server

Example usage:

{ "connectionId": "raspberry-pi" }

Use this to cleanly close SSH connections when they're no longer needed.

Windows CLI MCP Server_create_ssh_connection

Create a new SSH connection

Windows CLI MCP Server_read_ssh_connections

Read all SSH connections

Windows CLI MCP Server_update_ssh_connection

Update an existing SSH connection

Google Tasks MCP Server_create_task

Create a new task in Google Tasks

Google Tasks MCP Server_list_tasks

List all tasks in the default task list

Google Tasks MCP Server_delete_task

Delete a task from the default task list

Google Tasks MCP Server_complete_task

Toggle the completion status of a task

Markdownify MCP Server - UTF-8 Enhanced_youtube-to-markdown

Convert a YouTube video to markdown, including transcript if available

Markdownify MCP Server - UTF-8 Enhanced_audio-to-markdown

Convert an audio file to markdown, including transcription if possible

Markdownify MCP Server - UTF-8 Enhanced_xlsx-to-markdown

Convert an XLSX file to markdown

Markdownify MCP Server - UTF-8 Enhanced_bing-search-to-markdown

Convert a Bing search results page to markdown

Markdownify MCP Server - UTF-8 Enhanced_docx-to-markdown

Convert a DOCX file to markdown

Markdownify MCP Server - UTF-8 Enhanced_get-markdown-file

Get a markdown file by absolute file path

Markdownify MCP Server - UTF-8 Enhanced_image-to-markdown

Convert an image to markdown, including metadata and description

Markdownify MCP Server - UTF-8 Enhanced_pdf-to-markdown

Convert a PDF file to markdown

Markdownify MCP Server - UTF-8 Enhanced_pptx-to-markdown

Convert a PPTX file to markdown

Markdownify MCP Server - UTF-8 Enhanced_webpage-to-markdown

Convert a webpage to markdown

GitHub Kanban MCP Server_list_issues

issue

GitHub Kanban MCP Server_create_issue

issue

GitHub Kanban MCP Server_update_issue

issue

GitHub Kanban MCP Server_add_comment-
Biomart MCP_list_marts
Lists all available Biomart marts (databases) from Ensembl. Biomart organizes biological data in a hierarchy: MART -> DATASET -> ATTRIBUTES/FILTERS. This function returns all available marts as a CSV string. Returns: str: CSV-formatted table of all marts with their display names and descriptions. Example: list_marts() >>> "name,display_name,description ENSEMBL_MART_ENSEMBL,Ensembl Genes,Gene annotation from Ensembl ENSEMBL_MART_MOUSE,Mouse strains,Strain-specific data for mouse ..."
Biomart MCP_list_datasets
Lists all available biomart datasets for a given mart. Each mart contains multiple datasets. This function returns all datasets available in the specified mart as a CSV string. Args: mart (str): The mart identifier to list datasets from. Valid values include: ENSEMBL_MART_ENSEMBL, ENSEMBL_MART_MOUSE, ENSEMBL_MART_ONTOLOGY, ENSEMBL_MART_GENOMIC, ENSEMBL_MART_SNP, ENSEMBL_MART_FUNCGEN Returns: str: CSV-formatted table of all datasets with their display names and descriptions. Example: list_datasets("ENSEMBL_MART_ENSEMBL") >>> "name,display_name,description hsapiens_gene_ensembl,Human genes,Human genes (GRCh38.p13) mmusculus_gene_ensembl,Mouse genes,Mouse genes (GRCm39) ..."
Biomart MCP_list_common_attributes
Lists commonly used attributes available for a given dataset. This function returns only the most frequently used attributes (defined in COMMON_ATTRIBUTES) to avoid overwhelming the model with too many options. For a complete list, use list_all_attributes. Args: mart (str): The mart identifier (e.g., "ENSEMBL_MART_ENSEMBL") dataset (str): The dataset identifier (e.g., "hsapiens_gene_ensembl") Returns: str: CSV-formatted table of common attributes with their display names and descriptions. Example: list_common_attributes("ENSEMBL_MART_ENSEMBL", "hsapiens_gene_ensembl") >>> "name,display_name,description ensembl_gene_id,Gene stable ID,Ensembl stable ID for the gene external_gene_name,Gene name,The gene name ..."
Biomart MCP_list_all_attributes
Lists all available attributes for a given dataset with some filtering. This function returns a filtered list of all attributes available for the specified dataset. Some less commonly used attributes (homologs, microarray probes) are filtered out to reduce the response size. CAUTION: This function can return a large number of attributes and may be unstable for certain datasets. Consider using list_common_attributes first. Args: mart (str): The mart identifier (e.g., "ENSEMBL_MART_ENSEMBL") dataset (str): The dataset identifier (e.g., "hsapiens_gene_ensembl") Returns: str: CSV-formatted table of all filtered attributes. Example: list_all_attributes("ENSEMBL_MART_ENSEMBL", "hsapiens_gene_ensembl")
Biomart MCP_list_filters
Lists all available filters for a given dataset. Filters are used to narrow down the results of a Biomart query. This function returns all filters that can be applied to the specified dataset. Args: mart (str): The mart identifier (e.g., "ENSEMBL_MART_ENSEMBL") dataset (str): The dataset identifier (e.g., "hsapiens_gene_ensembl") Returns: str: CSV-formatted table of all filters with their display names and descriptions. Example: list_filters("ENSEMBL_MART_ENSEMBL", "hsapiens_gene_ensembl") >>> "name,description chromosome_name,Chromosome/scaffold name start,Gene start (bp) end,Gene end (bp) ..."
Biomart MCP_get_data
Queries Biomart for data using specified attributes and filters. This function performs the main data retrieval from Biomart, allowing you to query biological data by specifying which attributes to return and which filters to apply. Includes automatic retry logic for resilience. Args: mart (str): The mart identifier (e.g., "ENSEMBL_MART_ENSEMBL") dataset (str): The dataset identifier (e.g., "hsapiens_gene_ensembl") attributes (list[str]): List of attributes to retrieve (e.g., ["ensembl_gene_id", "external_gene_name"]) filters (dict[str, str]): Dictionary of filters to apply (e.g., {"chromosome_name": "1"}) Returns: str: CSV-formatted results of the query. Example: get_data( "ENSEMBL_MART_ENSEMBL", "hsapiens_gene_ensembl", ["ensembl_gene_id", "external_gene_name", "chromosome_name"], {"chromosome_name": "X", "biotype": "protein_coding"} ) >>> "ensembl_gene_id,external_gene_name,chromosome_name ENSG00000000003,TSPAN6,X ENSG00000000005,TNMD,X ..."
Biomart MCP_get_translation
Translates a single identifier from one attribute type to another. This function allows conversion between different identifier types, such as converting a gene symbol to an Ensembl ID. Results are cached to improve performance. Args: mart (str): The mart identifier (e.g., "ENSEMBL_MART_ENSEMBL") dataset (str): The dataset identifier (e.g., "hsapiens_gene_ensembl") from_attr (str): The source attribute name (e.g., "hgnc_symbol") to_attr (str): The target attribute name (e.g., "ensembl_gene_id") target (str): The identifier value to translate (e.g., "TP53") Returns: str: The translated identifier, or an error message if not found. Example: get_translation("ENSEMBL_MART_ENSEMBL", "hsapiens_gene_ensembl", "hgnc_symbol", "ensembl_gene_id", "TP53") >>> "ENSG00000141510"
Biomart MCP_batch_translate
Translates multiple identifiers in a single batch operation. This function is more efficient than multiple calls to get_translation when you need to translate many identifiers at once. Args: mart (str): The mart identifier (e.g., "ENSEMBL_MART_ENSEMBL") dataset (str): The dataset identifier (e.g., "hsapiens_gene_ensembl") from_attr (str): The source attribute name (e.g., "hgnc_symbol") to_attr (str): The target attribute name (e.g., "ensembl_gene_id") targets (list[str]): List of identifier values to translate (e.g., ["TP53", "BRCA1", "BRCA2"]) Returns: dict: A dictionary containing: - translations: Dictionary mapping input IDs to translated IDs - not_found: List of IDs that could not be translated - found_count: Number of successfully translated IDs - not_found_count: Number of IDs that could not be translated Example: batch_translate("ENSEMBL_MART_ENSEMBL", "hsapiens_gene_ensembl", "hgnc_symbol", "ensembl_gene_id", ["TP53", "BRCA1", "BRCA2"]) >>> {"translations": {"TP53": "ENSG00000141510", "BRCA1": "ENSG00000012048"}, "not_found": ["BRCA2"], "found_count": 2, "not_found_count": 1}
Cursor A11y MCP_a11y

Run accessibility tests on a URL or a local path (relative URL appended to http://localhost:5000).

Terminal Controller for MCP_execute_command
Execute terminal command and return results Args: command: Command line command to execute timeout: Command timeout in seconds, default is 30 seconds Returns: Output of the command execution
Terminal Controller for MCP_get_command_history
Get recent command execution history Args: count: Number of recent commands to return Returns: Formatted command history record
Terminal Controller for MCP_get_current_directory
Get current working directory Returns: Path of current working directory
Terminal Controller for MCP_change_directory
Change current working directory Args: path: Directory path to switch to Returns: Operation result information
Terminal Controller for MCP_list_directory
List files and subdirectories in the specified directory Args: path: Directory path to list contents, default is current directory Returns: List of directory contents
Terminal Controller for MCP_write_file
Write content to a file Args: path: Path to the file content: Content to write (string or JSON object) mode: Write mode ('overwrite' or 'append') Returns: Operation result information
Terminal Controller for MCP_read_file
Read content from a file with optional row selection Args: path: Path to the file start_row: Starting row to read from (0-based, optional) end_row: Ending row to read to (0-based, inclusive, optional) as_json: If True, attempt to parse file content as JSON (optional) Returns: File content or selected lines, optionally parsed as JSON
Terminal Controller for MCP_insert_file_content
Insert content at specific row(s) in a file Args: path: Path to the file content: Content to insert (string or JSON object) row: Row number to insert at (0-based, optional) rows: List of row numbers to insert at (0-based, optional) Returns: Operation result information
Terminal Controller for MCP_delete_file_content
Delete content at specific row(s) from a file Args: path: Path to the file row: Row number to delete (0-based, optional) rows: List of row numbers to delete (0-based, optional) substring: If provided, only delete this substring within the specified row(s), not the entire row (optional) Returns: Operation result information
Terminal Controller for MCP_update_file_content
Update content at specific row(s) in a file Args: path: Path to the file content: New content to place at the specified row(s) row: Row number to update (0-based, optional) rows: List of row numbers to update (0-based, optional) substring: If provided, only replace this substring within the specified row(s), not the entire row Returns: Operation result information
Gemini Thinking Server_geminithinking

A detailed tool for dynamic and reflective problem-solving through Gemini AI. This tool helps analyze problems through a flexible thinking process powered by Google's Gemini model. Each thought can build on, question, or revise previous insights as understanding deepens.

When to use this tool:

  • Breaking down complex problems into steps
  • Planning and design with room for revision
  • Analysis that might need course correction
  • Problems where the full scope might not be clear initially
  • Problems that require a multi-step solution
  • Tasks that need to maintain context over multiple steps
  • Situations where irrelevant information needs to be filtered out

Key features:

  • Leverages Gemini AI for deep analytical thinking
  • Provides meta-commentary on the reasoning process
  • Indicates confidence levels for generated thoughts
  • Suggests alternative approaches when relevant
  • You can adjust total_thoughts up or down as you progress
  • You can question or revise previous thoughts
  • You can add more thoughts even after reaching what seemed like the end
  • You can express uncertainty and explore alternative approaches
  • Not every thought needs to build linearly - you can branch or backtrack
  • Session persistence: save and resume your analysis sessions

Parameters explained:

  • query: The question or problem to be analyzed
  • context: Additional context information (e.g., code snippets, background)
  • approach: Suggested approach to the problem (optional)
  • previousThoughts: Array of previous thoughts for context
  • thought: The current thinking step (if empty, will be generated by Gemini)
  • next_thought_needed: True if you need more thinking, even if at what seemed like the end
  • thought_number: Current number in sequence (can go beyond initial total if needed)
  • total_thoughts: Current estimate of thoughts needed (can be adjusted up/down)
  • is_revision: A boolean indicating if this thought revises previous thinking
  • revises_thought: If is_revision is true, which thought number is being reconsidered
  • branch_from_thought: If branching, which thought number is the branching point
  • branch_id: Identifier for the current branch (if any)
  • needs_more_thoughts: If reaching end but realizing more thoughts needed
  • metaComments: Meta-commentary from Gemini about its reasoning process
  • confidenceLevel: Gemini's confidence in the generated thought (0-1)
  • alternativePaths: Alternative approaches suggested by Gemini

Session commands:

  • sessionCommand: Command to manage sessions ('save', 'load', 'getState')
  • sessionPath: Path to save or load the session file (required for 'save' and 'load' commands)

You should:

  1. Start with a clear query and any relevant context
  2. Let Gemini generate thoughts by not providing the 'thought' parameter
  3. Review the generated thoughts and meta-commentary
  4. Feel free to revise or branch thoughts as needed
  5. Consider alternative paths suggested by Gemini
  6. Only set next_thought_needed to false when truly done
  7. Use session commands to save your progress and resume later
Safe MCP Server_getSafeTransactions

Get all transactions for a Safe address

Safe MCP Server_getMultisigTransaction

Get details of a specific multisig transaction

Safe MCP Server_decodeTransactionData

Decode transaction data using Safe API

Overseerr MCP Server_example_tool

An example tool that processes messages

Overseerr MCP Server_get_daily_treasury_statement

Get the daily treasury statement for a specific day

Overseerr MCP Server_get_media_details

Get detailed information about a specific movie or TV show

Overseerr MCP Server_get_requests

Get a list of media requests from Overseerr

Overseerr MCP Server_request_media

Request a movie or TV show to be added to the media server

Overseerr MCP Server_search_media

Search for movies and TV shows in Overseerr

Zoom Transcript MCP Server_get_recent_transcripts

Get and download transcripts from recent Zoom meetings. This tool will access the Zoom cloud API to fetch and download recent meeting transcripts.

Zoom Transcript MCP Server_search_transcripts

Search across Zoom meeting transcripts for specific content. This tool will search through locally stored transcripts first.

Zoom Transcript MCP Server_extract_action_items

Identify and extract action items, tasks and commitments from meeting transcripts

Zoom Transcript MCP Server_check_local_transcripts

Check what transcripts are already downloaded and available locally

Zoom Transcript MCP Server_download_transcript

Download a specific Zoom meeting transcript from the cloud to local storage

Zoom Transcript MCP Server_list_meetings

List available Zoom meetings with recordings that exist in the cloud

SQLite MCP Server_read-query

Execute a read-only SQL query

SQLite MCP Server_write-query

Execute a write SQL query

SQLite MCP Server_create-table

Create a new table in the database

SQLite MCP Server_list-tables

List all tables in the database

SQLite MCP Server_describe-table

Get schema information for a table

SQLite MCP Server_append-insight

Add a business insight to the memo

Ragie Model Context Protocol Server_retrieve

Look up information in the Knowledge Base. Use this tool when you need to:

  • Find relevant documents or information on specific topics
  • Retrieve company policies, procedures, or guidelines
  • Access product specifications or technical documentation
  • Get contextual information to answer company-specific questions
  • Find historical data or information about projects
Markdown Downloader_download_markdown

Download a webpage as markdown using r.jina.ai

Markdown Downloader_list_downloaded_files

List all downloaded markdown files

Markdown Downloader_set_download_directory

Set the main local download folder for markdown files

Markdown Downloader_get_download_directory

Get the current download directory

Markdown Downloader_create_subdirectory

Create a new subdirectory in the root download folder

Telegram MCP Server_ListDialogs

List available dialogs, chats and channels.

Telegram MCP Server_ListMessages
List messages in a given dialog, chat or channel. The messages are listed in order from newest to oldest. If `unread` is set to `True`, only unread messages will be listed. Once a message is read, it will not be listed again. If `limit` is set, only the last `limit` messages will be listed. If `unread` is set, the limit will be the minimum between the unread messages and the limit.
Chain of Draft (CoD) MCP Server_chain_of_draft_solve

Solve a reasoning problem using Chain of Draft approach

Chain of Draft (CoD) MCP Server_math_solve

Solve a math problem using Chain of Draft reasoning

Chain of Draft (CoD) MCP Server_code_solve

Solve a coding problem using Chain of Draft reasoning

Chain of Draft (CoD) MCP Server_logic_solve

Solve a logic problem using Chain of Draft reasoning

Chain of Draft (CoD) MCP Server_get_performance_stats

Get performance statistics for CoD vs CoT approaches

Chain of Draft (CoD) MCP Server_get_token_reduction

Get token reduction statistics for CoD vs CoT

Chain of Draft (CoD) MCP Server_analyze_problem_complexity

Analyze the complexity of a problem

Claude Outlook MCP Tool_outlook_mail

Interact with Microsoft Outlook for macOS - read, search, send, and manage emails

Claude Outlook MCP Tool_outlook_calendar

Interact with Microsoft Outlook for macOS calendar - view, create, and manage events

Claude Outlook MCP Tool_outlook_contacts

Search and retrieve contacts from Microsoft Outlook for macOS

BrianKnows MCP Server_ping

Check if the Brian API server is alive

BrianKnows MCP Server_search

Search using Brian's knowledge engine

BrianKnows MCP Server_agent

Chat with Brian agent

Dataset Viewer MCP Server_get_info

Get detailed information about a Hugging Face dataset including description, features, splits, and statistics. Run validate first to check if the dataset exists and is accessible.

Dataset Viewer MCP Server_get_rows

Get paginated rows from a Hugging Face dataset

Dataset Viewer MCP Server_get_first_rows

Get first rows from a Hugging Face dataset split

Dataset Viewer MCP Server_search_dataset

Search for text within a Hugging Face dataset

Dataset Viewer MCP Server_filter

Filter rows in a Hugging Face dataset using SQL-like conditions

Dataset Viewer MCP Server_get_statistics

Get statistics about a Hugging Face dataset

Dataset Viewer MCP Server_get_parquet

Export Hugging Face dataset split as Parquet file

Dataset Viewer MCP Server_validate

Check if a Hugging Face dataset exists and is accessible

Claude Desktop API MCP_send-message

Send a message to Claude

Node Omnibus MCP Server_create_project

Create a new Node.js project with enhanced configuration

Node Omnibus MCP Server_install_packages

Install npm packages with version management

Node Omnibus MCP Server_generate_component

Generate a new React component with TypeScript support

Node Omnibus MCP Server_create_type_definition

Create TypeScript type definitions or interfaces

Node Omnibus MCP Server_add_script

Add a new npm script to package.json

Node Omnibus MCP Server_update_tsconfig

Update TypeScript configuration

Node Omnibus MCP Server_create_documentation

Generate project documentation

Todo List MCP Server_create-todo

Create a new todo item

Todo List MCP Server_list-todos

List all todos

Todo List MCP Server_get-todo

Get a specific todo by ID

Todo List MCP Server_update-todo

Update a todo title or description

Todo List MCP Server_complete-todo

Mark a todo as completed

Todo List MCP Server_delete-todo

Delete a todo

Todo List MCP Server_search-todos-by-title

Search todos by title (case insensitive partial match)

Todo List MCP Server_search-todos-by-date

Search todos by creation date (format: YYYY-MM-DD)

Todo List MCP Server_list-active-todos

List all non-completed todos

Todo List MCP Server_summarize-active-todos

Generate a summary of all active (non-completed) todos

X(Twitter) MCP Server_create_draft_tweet

Create a draft tweet

X(Twitter) MCP Server_create_draft_thread

Create a draft tweet thread

X(Twitter) MCP Server_list_drafts

List all draft tweets and threads

X(Twitter) MCP Server_publish_draft

Publish a draft tweet or thread

X(Twitter) MCP Server_delete_draft

Delete a draft tweet or thread

Brightsy MCP Server_brightsy

Proxy requests to an Brightsy AI agent

Home Assistant MCP Server_get_state

Get the current state of a Home Assistant entity

Home Assistant MCP Server_toggle_entity

Toggle a Home Assistant entity on/off

Home Assistant MCP Server_trigger_automation

Trigger a Home Assistant automation

Home Assistant MCP Server_list_entities

List all available entities in Home Assistant

MCP Server Template for Cursor IDE_mcp_fetch

Fetches a website and returns its content

MCP Server Template for Cursor IDE_mood

Ask the server about its mood - it's always happy!

ClickUp MCP Server_add_task_dependency

Create a dependency relationship between two tasks. Use this to establish that one task must be completed before another can start. You must specify either 'dependsOn' (the task that must be completed first) or 'dependencyOf' (the task that's waiting for this task), but not both.

ClickUp MCP Server_delete_task_dependency

Remove a dependency relationship between two tasks. This allows tasks to be completed independently of each other.

ClickUp MCP Server_add_task_link

Create a link between two tasks. Unlike dependencies, links are just references between related tasks without enforcing completion order.

ClickUp MCP Server_delete_task_link

Remove a link between two tasks. This removes the reference between the tasks.

ClickUp MCP Server_add_tag_to_task

Add a tag to a task for better organization and filtering. Tags help categorize tasks across different lists and projects.

ClickUp MCP Server_remove_tag_from_task

Remove a tag from a task. This does not delete the tag from the Space, just removes it from the specific task.

ClickUp MCP Server_get_task_comments

Retrieve comments for a specific task. Comments provide discussion history and context for the task.

ClickUp MCP Server_create_task_comment

Add a new comment to a task. Comments can be assigned to team members and include rich text formatting.

ClickUp MCP Server_get_list_comments

Retrieve comments for a specific list. List comments apply to the entire list rather than individual tasks.

ClickUp MCP Server_create_list_comment

Add a new comment to a list. List comments can be used for general discussion about the list's purpose or status.

ClickUp MCP Server_get_chat_view_comments

Retrieve comments from a Chat view. Chat views provide a dedicated space for team discussions.

ClickUp MCP Server_create_chat_view_comment

Add a new comment to a Chat view. Chat view comments facilitate team discussions outside of specific tasks or lists.

ClickUp MCP Server_update_comment

Modify an existing comment. This can be used to edit the content, change assignees, or mark comments as resolved.

ClickUp MCP Server_delete_comment

Remove a comment. This permanently deletes the comment and cannot be undone.

ClickUp MCP Server_get_threaded_comments

Retrieve threaded comments for a parent comment. Threaded comments allow for organized discussions within a comment thread.

ClickUp MCP Server_create_threaded_comment

Add a reply to an existing comment. Threaded comments help keep discussions organized by grouping related comments together.

ClickUp MCP Server_create_checklist

Add a new checklist to a task. Checklists help organize subtasks or steps needed to complete a task.

ClickUp MCP Server_edit_checklist

Rename a task checklist or reorder it among other checklists on a task.

ClickUp MCP Server_delete_checklist

Delete a checklist from a task. This removes the entire checklist and all its items.

ClickUp MCP Server_create_checklist_item

Add a line item to a task checklist. Checklist items represent individual steps or subtasks.

ClickUp MCP Server_edit_checklist_item

Update an individual line item in a task checklist. Use this to rename, reassign, mark as resolved, or nest items.

ClickUp MCP Server_delete_checklist_item

Delete a line item from a task checklist. This permanently removes the item.

ClickUp MCP Server_get_workspace_hierarchy

Retrieve the complete ClickUp workspace hierarchy, including all spaces, folders, and lists with their IDs, names, and hierarchical paths. Call this tool only when you need to discover the workspace structure and don't already have this information from recent context. Avoid using for repeated lookups of the same information.

ClickUp MCP Server_create_task

Create a single task in a ClickUp list. Use this tool for individual task creation only. For multiple tasks, use create_bulk_tasks instead. Before calling this tool, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. When creating a task, you must provide either a listId or listName.

ClickUp MCP Server_create_bulk_tasks

Create multiple tasks in a ClickUp list simultaneously. Use this tool when you need to add several related tasks in one operation. Before calling, check if you already have the necessary list ID from previous responses in the conversation, as this avoids redundant lookups. More efficient than creating tasks one by one for batch operations.

ClickUp MCP Server_create_list

Create a new list directly in a ClickUp space. Use this tool when you need a top-level list not nested inside a folder. Before calling, check if you already have the necessary space ID from previous responses in the conversation, as this avoids redundant lookups. For creating lists inside folders, use create_list_in_folder instead.

ClickUp MCP Server_create_folder

Create a new folder in a ClickUp space for organizing related lists. Use this tool when you need to group multiple lists together. Before calling, check if you already have the necessary space ID from previous responses in the conversation, as this avoids redundant lookups. After creating a folder, you can add lists to it using create_list_in_folder.

ClickUp MCP Server_create_list_in_folder

Create a new list within a ClickUp folder. Use this tool when you need to add a list to an existing folder structure. Before calling, check if you already have the necessary folder ID and space ID from previous responses in the conversation, as this avoids redundant lookups. For top-level lists not in folders, use create_list instead.

ClickUp MCP Server_move_task

Move an existing task from its current list to a different list. Use this tool when you need to relocate a task within your workspace hierarchy. Before calling, check if you already have the necessary task ID and list ID from previous responses in the conversation, as this avoids redundant lookups. Task statuses may be reset if the destination list uses different status options.

ClickUp MCP Server_duplicate_task

Create a copy of an existing task in the same or different list. Use this tool when you need to replicate a task's content and properties. Before calling, check if you already have the necessary task ID and list ID from previous responses in the conversation, as this avoids redundant lookups. The duplicate will preserve name, description, priority, and other attributes from the original task.

ClickUp MCP Server_update_task

Modify the properties of an existing task. Use this tool when you need to change a task's name, description, status, priority, or due date. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups. Only the fields you specify will be updated; other fields will remain unchanged.

ClickUp MCP Server_get_tasks

Retrieve tasks from a ClickUp list with optional filtering capabilities. Use this tool when you need to see existing tasks or analyze your current workload. Before calling, check if you already have the necessary list ID from previous responses in the conversation, as this avoids redundant lookups. Results can be filtered by status, assignees, dates, and more.

ClickUp MCP Server_get_task

Retrieve comprehensive details about a specific ClickUp task. Use this tool when you need in-depth information about a particular task, including its description, custom fields, attachments, and other metadata. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups.

ClickUp MCP Server_delete_task

Permanently remove a task from your ClickUp workspace. Use this tool with caution as deletion cannot be undone. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups. For safety, the task ID is required.

ClickUp MCP Server_get_folder

Retrieve details about a specific ClickUp folder including its name, status, and other metadata. Before calling, check if you already have the necessary folder ID from previous responses in the conversation history, as this avoids redundant lookups. Helps you understand folder structure before creating or updating lists.

ClickUp MCP Server_delete_list

Permanently remove a list from your ClickUp workspace. Use with caution as deletion cannot be undone and will remove all tasks within the list. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups.

ClickUp MCP Server_update_folder

Modify an existing ClickUp folder's properties, such as name or status settings. Before calling, check if you already have the necessary folder ID from previous responses in the conversation history, as this avoids redundant lookups. Use when reorganizing or renaming workspace elements.

ClickUp MCP Server_delete_folder

Permanently remove a folder from your ClickUp workspace. Use with caution as deletion cannot be undone and will remove all lists and tasks within the folder. Before calling, check if you already have the necessary folder ID from previous responses in the conversation history, as this avoids redundant lookups.

ClickUp MCP Server_get_list

Retrieve details about a specific ClickUp list including its name, content, status options, and other metadata. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. Useful to understand list structure before creating or updating tasks.

ClickUp MCP Server_update_list

Modify an existing ClickUp list's properties, such as name, content, or status options. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. Use when reorganizing or renaming workspace elements.

Web Content MCP Server_fetch_page

Fetches and processes a web page for LLM context

Web Content MCP Server_search_documentation

Searches Cloudflare documentation and returns relevant content

Web Content MCP Server_extract_structured_content

Extracts structured content from a web page using CSS selectors

Web Content MCP Server_summarize_content

Summarizes web content for more concise LLM context

MCP JSON Document Collection Server_create_json_doc_database

Create a JSON document database

MCP JSON Document Collection Server_delete_json_doc_database

Delete a JSON document database

MCP JSON Document Collection Server_connect_json_doc_database_to_cloud

Connect a JSON document database to cloud sync service. Show the dashboard URL after connecting.

MCP JSON Document Collection Server_list_json_doc_databases

Returns the list of JSON document databases. Use this to understand which databases are available before trying to access JSON documents.

MCP JSON Document Collection Server_save_json_doc_to_db

Save a JSON document to a document database

MCP JSON Document Collection Server_query_json_docs_from_db

Query JSON documents sorted by a field from a document database. If no sortField is provided, use the _id field.

MCP JSON Document Collection Server_load_json_doc_from_db

Load a JSON document by ID from a document database

MCP JSON Document Collection Server_delete_json_doc_from_db

Delete a JSON document by ID from a document database

FRED MCP Server_search

Search for FRED data series with advanced filtering options

FRED MCP Server_series

Get observations for a specific FRED data series with advanced options

Scraper.is MCP Server_scraperis_scraper

Extract data from websites using natural language prompts. The prompt should include the website URL and what data you want to extract. For example: 'Get me the top 10 products from producthunt.com' or 'Extract all article titles and authors from techcrunch.com/news'

ScrapeGraph MCP Server_markdownify
Convert a webpage into clean, formatted markdown. Args: website_url: URL of the webpage to convert Returns: Dictionary containing the markdown result
ScrapeGraph MCP Server_smartscraper
Extract structured data from a webpage using AI. Args: user_prompt: Instructions for what data to extract website_url: URL of the webpage to scrape Returns: Dictionary containing the extracted data
ScrapeGraph MCP Server_searchscraper
Perform AI-powered web searches with structured results. Args: user_prompt: Search query or instructions Returns: Dictionary containing search results and reference URLs
PDF to PNG MCP Server_pdf2png

Converts PDFs to images in PNG format.

Meta MCP Server_write_mcp_server

Write files for an MCP server based on our discussion with the user

The Verge News MCP Server_get-daily-news

Get the latest news from The Verge for today

The Verge News MCP Server_get-weekly-news

Get the latest news from The Verge for the past week

The Verge News MCP Server_search-news

Search for news articles from The Verge by keyword

Strapi MCP Server_strapi_list_servers

List all available Strapi servers from the configuration.

Strapi MCP Server_strapi_get_content_types

Get all content types from Strapi. Returns the complete schema of all content types.

Strapi MCP Server_strapi_get_components

Get all components from Strapi with pagination support. Returns both component data and pagination metadata (page, pageSize, total, pageCount).

Strapi MCP Server_strapi_rest

Execute REST API requests against Strapi endpoints. IMPORTANT: All write operations (POST, PUT, DELETE) require explicit user authorization via the userAuthorized parameter.

  1. Reading components: params: { populate: ['SEO'] } // Populate a component params: { populate: { SEO: { fields: ['Title', 'seoDescription'] } } } // With field selection
  2. Updating components (REQUIRES USER AUTHORIZATION): body: { data: { // For single components: componentName: { Title: 'value', seoDescription: 'value' }, // For repeatable components: componentName: [ { field: 'value' } ] } } userAuthorized: true // Must set this to true for POST/PUT/DELETE after getting user permission
  3. Other parameters:
  • fields: Select specific fields
  • filters: Filter results
  • sort: Sort results
  • pagination: Page through results
Strapi MCP Server_strapi_upload_media

Upload media to Strapi's media library from a URL with format conversion, quality control, and metadata options. IMPORTANT: This is a write operation that REQUIRES explicit user authorization via the userAuthorized parameter.

ComfyUI MCP Server_generate_image

Generate an image using ComfyUI

WinTerm MCP_write_to_terminal

Write text or commands to the terminal

WinTerm MCP_read_terminal_output

Read the output from the terminal

WinTerm MCP_send_control_character

Send a control character to the terminal

Anki MCP Server_update_cards

After the user answers cards you've quizzed them on, use this tool to mark them answered and update their ease

Anki MCP Server_add_card

Create a new flashcard in Anki for the user. Must use HTML formatting only. IMPORTANT FORMATTING RULES:

  1. Must use HTML tags for ALL formatting - NO markdown
  2. Use <br> for ALL line breaks
  3. For code blocks, use <pre> with inline CSS styling
  4. Example formatting:
    • Line breaks: <br>
    • Code: <pre style="background-color: transparent; padding: 10px; border-radius: 5px;">
    • Lists: <ol> and <li> tags
    • Bold: <strong>
    • Italic: <em>
Anki MCP Server_get_due_cards

Returns a given number (num) of cards due for review.

Anki MCP Server_get_new_cards

Returns a given number (num) of new and unseen cards.

Trino MCP Server_execute_query
Execute a SQL query against Trino. Args: sql: The SQL query to execute. catalog: Optional catalog name to use for the query. schema: Optional schema name to use for the query. Returns: Dict[str, Any]: Query results including metadata.
Trino MCP Server_cancel_query
Cancel a running query. Args: query_id: ID of the query to cancel. Returns: Dict[str, Any]: Result of the cancellation operation.
Trino MCP Server_inspect_table
Get detailed metadata about a table. Args: catalog: Catalog name. schema: Schema name. table: Table name. Returns: Dict[str, Any]: Table metadata including columns, statistics, etc.
mcp-server-code-assist_list_directory

Lists directory contents using system ls/dir command

mcp-server-code-assist_create_directory

Creates a new directory

mcp-server-code-assist_create_file

Creates a new file with content

mcp-server-code-assist_delete_file

Deletes a file

mcp-server-code-assist_modify_file

Modifies parts of a file using string replacements

mcp-server-code-assist_rewrite_file

Rewrites entire file content

mcp-server-code-assist_read_file

Reads file content

mcp-server-code-assist_file_tree

Lists directory tree structure with git tracking support

mcp-server-code-assist_git_status

Shows git repository status

mcp-server-code-assist_git_diff

Shows git diff

mcp-server-code-assist_git_log

Shows git commit history

mcp-server-code-assist_git_show

Shows git commit details

MCP Git Repo Browser_git_directory_structure

Clone a Git repository and return its directory structure in a tree format.

MCP Git Repo Browser_git_read_important_files

Read the contents of specified files in a given git repository.

ActivityWatch MCP Server_activitywatch_list_buckets

List all ActivityWatch buckets with optional type filtering

ActivityWatch MCP Server_activitywatch_query_examples

Get examples of properly formatted queries for the ActivityWatch MCP server

ActivityWatch MCP Server_activitywatch_run_query

Run a query in ActivityWatch's query language

ActivityWatch MCP Server_activitywatch_get_events

Get raw events from an ActivityWatch bucket

ActivityWatch MCP Server_activitywatch_get_settings

Get ActivityWatch settings. Can retrieve all settings or a specific key if provided.

Jira MCP Server_delete_issue

Delete a Jira issue or subtask

Jira MCP Server_get_issues

Get all issues and subtasks for a project

Jira MCP Server_update_issue

Update an existing Jira issue

Jira MCP Server_list_fields

List all available Jira fields

Jira MCP Server_list_issue_types

List all available issue types

Jira MCP Server_list_link_types

List all available issue link types

Jira MCP Server_get_user

Get a user's account ID by email address

Jira MCP Server_create_issue

Create a new Jira issue

Jira MCP Server_create_issue_link

Create a link between two issues

Database Updater MCP Server_create_note

Create a new note

Database Updater MCP Server_update_database

Update the database from a CSV or Excel file

Salesforce MCP Server_salesforce_search_objects

Search for Salesforce standard and custom objects by name pattern. Examples: 'Account' will find Account, AccountHistory; 'Order' will find WorkOrder, ServiceOrder__c etc.

Salesforce MCP Server_salesforce_describe_object

Get detailed schema metadata including all fields, relationships, and field properties of any Salesforce object. Examples: 'Account' shows all Account fields including custom fields; 'Case' shows all Case fields including relationships to Account, Contact etc.

Salesforce MCP Server_salesforce_query_records

Query records from any Salesforce object using SOQL, including relationship queries.

Examples:

  1. Parent-to-child query (e.g., Account with Contacts):
    • objectName: "Account"
    • fields: ["Name", "(SELECT Id, FirstName, LastName FROM Contacts)"]
  2. Child-to-parent query (e.g., Contact with Account details):
    • objectName: "Contact"
    • fields: ["FirstName", "LastName", "Account.Name", "Account.Industry"]
  3. Multiple level query (e.g., Contact -> Account -> Owner):
    • objectName: "Contact"
    • fields: ["Name", "Account.Name", "Account.Owner.Name"]
  4. Related object filtering:
    • objectName: "Contact"
    • fields: ["Name", "Account.Name"]
    • whereClause: "Account.Industry = 'Technology'"

Note: When using relationship fields:

  • Use dot notation for parent relationships (e.g., "Account.Name")
  • Use subqueries in parentheses for child relationships (e.g., "(SELECT Id FROM Contacts)")
  • Custom relationship fields end in "__r" (e.g., "CustomObject__r.Name")
Salesforce MCP Server_salesforce_dml_records

Perform data manipulation operations on Salesforce records:

  • insert: Create new records
  • update: Modify existing records (requires Id)
  • delete: Remove records (requires Id)
  • upsert: Insert or update based on external ID field Examples: Insert new Accounts, Update Case status, Delete old records, Upsert based on custom external ID
Salesforce MCP Server_salesforce_manage_object

Create new custom objects or modify existing ones in Salesforce:

  • Create: New custom objects with fields, relationships, and settings
  • Update: Modify existing object settings, labels, sharing model Examples: Create Customer_Feedback__c object, Update object sharing settings Note: Changes affect metadata and require proper permissions
Salesforce MCP Server_salesforce_manage_field

Create new custom fields or modify existing fields on any Salesforce object:

  • Field Types: Text, Number, Date, Lookup, Master-Detail, Picklist etc.
  • Properties: Required, Unique, External ID, Length, Scale etc.
  • Relationships: Create lookups and master-detail relationships Examples: Add Rating__c picklist to Account, Create Account lookup on Custom Object Note: Changes affect metadata and require proper permissions
Salesforce MCP Server_salesforce_search_all

Search across multiple Salesforce objects using SOSL (Salesforce Object Search Language).

Examples:

  1. Basic search across all objects: { "searchTerm": "John", "objects": [ { "name": "Account", "fields": ["Name"], "limit": 10 }, { "name": "Contact", "fields": ["FirstName", "LastName", "Email"] } ] }
  2. Advanced search with filters: { "searchTerm": "Cloud*", "searchIn": "NAME FIELDS", "objects": [ { "name": "Account", "fields": ["Name", "Industry"], "orderBy": "Name DESC", "where": "Industry = 'Technology'" } ], "withClauses": [ { "type": "NETWORK", "value": "ALL NETWORKS" }, { "type": "SNIPPET", "fields": ["Description"] } ] }

Notes:

  • Use * and ? for wildcards in search terms
  • Each object can have its own WHERE, ORDER BY, and LIMIT clauses
  • Support for WITH clauses: DATA CATEGORY, DIVISION, METADATA, NETWORK, PRICEBOOKID, SNIPPET, SECURITY_ENFORCED
  • "updateable" and "viewable" options control record access filtering
Todoist MCP Server_todoist_create_task

Create a new task in Todoist with optional description, due date, and priority

Todoist MCP Server_todoist_get_tasks

Get a list of tasks from Todoist with various filters

Todoist MCP Server_todoist_update_task

Update an existing task in Todoist by searching for it by name and then updating it

Todoist MCP Server_todoist_delete_task

Delete a task from Todoist by searching for it by name

Todoist MCP Server_todoist_complete_task

Mark a task as complete by searching for it by name

Monday.com MCP Server_monday-create-item

Create a new item in a Monday.com Board. Optionally, specify the parent Item ID to create a Sub-item.

Monday.com MCP Server_monday-update-item

Update a Monday.com item's or sub-item's column values.

Monday.com MCP Server_monday-get-board-columns

Get the Columns of a Monday.com Board.

Monday.com MCP Server_monday-get-board-groups

Get the Groups of a Monday.com Board.

Monday.com MCP Server_monday-create-update

Create an update (comment) on a Monday.com Item or Sub-item.

Monday.com MCP Server_monday-list-boards

Get all Boards from Monday.com

Monday.com MCP Server_monday-list-items-in-groups

List all items in the specified groups of a Monday.com board

Monday.com MCP Server_monday-list-subitems-in-items

List all Sub-items of a list of Monday.com Items

MCP Etherscan Server_check-balance

Check the ETH balance of an Ethereum address

MCP Etherscan Server_get-transactions

Get recent transactions for an Ethereum address

MCP Etherscan Server_get-token-transfers

Get ERC20 token transfers for an Ethereum address

MCP Etherscan Server_get-contract-abi

Get the ABI for a smart contract

MCP Etherscan Server_get-gas-prices

Get current gas prices in Gwei

MCP Etherscan Server_get-ens-name

Get the ENS name for an Ethereum address

Ideogram MCP Server_generate_image

Generate an image using Ideogram AI

MCP Google Custom Search Server_search

Search the web using Google Custom Search API

Ollama MCP Server_push

Push a model to a registry

Ollama MCP Server_list

List models

Ollama MCP Server_cp

Copy a model

Ollama MCP Server_rm

Remove a model

Ollama MCP Server_serve

Start Ollama server

Ollama MCP Server_create

Create a model from a Modelfile

Ollama MCP Server_show

Show information for a model

Ollama MCP Server_run

Run a model

Ollama MCP Server_pull

Pull a model from a registry

Ollama MCP Server_chat_completion

OpenAI-compatible chat completion API

WebSearch_search

Performs web searches and retrieves up-to-date information from the internet. Args: - prompt: Specific query or topic to search for on the internet - limit: Maximum number of results to return (between 1 and 20)

Returns: - Search results with relevant information about the requested topic
WebSearch_crawl

Crawls a website starting from the specified URL and extracts content from multiple pages. Args: - url: The complete URL of the web page to start crawling from - maxDepth: The maximum depth level for crawling linked pages - limit: The maximum number of pages to crawl

Returns: - Content extracted from the crawled pages in markdown and HTML format
WebSearch_extract

Extracts specific information from a web page based on a prompt. Args: - url: The complete URL of the web page to extract information from - prompt: Instructions specifying what information to extract from the page - enabaleWebSearch: Whether to allow web searches to supplement the extraction - showSources: Whether to include source references in the response

Returns: - Extracted information from the web page based on the prompt
WebSearch_scrape-
mcp-figma_get_comments

Get comments on a Figma file

mcp-figma_set_api_key

Set your Figma API personal access token (will be saved to ~/.mcp-figma/config.json)

mcp-figma_check_api_key

Check if a Figma API key is already configured

mcp-figma_get_file

Get a Figma file by key

mcp-figma_get_file_nodes

Get specific nodes from a Figma file

mcp-figma_get_image

Get images for nodes in a Figma file

mcp-figma_get_image_fills

Get URLs for images used in a Figma file

mcp-figma_post_comment

Post a comment on a Figma file

mcp-figma_delete_comment

Delete a comment from a Figma file

mcp-figma_get_team_projects

Get projects for a team

mcp-figma_get_project_files

Get files for a project

mcp-figma_get_team_components

Get components for a team

mcp-figma_get_file_components

Get components from a file

mcp-figma_get_component

Get a component by key

mcp-figma_get_team_component_sets

Get component sets for a team

mcp-figma_get_team_styles

Get styles for a team

mcp-figma_get_file_styles

Get styles from a file

mcp-figma_get_style

Get a style by key

MCP ABAP ADT_GetStructure

Retrieve ABAP Structure

MCP ABAP ADT_GetTable

Retrieve ABAP table structure

MCP ABAP ADT_GetTableContents

Retrieve contents of an ABAP table

MCP ABAP ADT_GetPackage

Retrieve ABAP package details

MCP ABAP ADT_GetTypeInfo

Retrieve ABAP type information

MCP ABAP ADT_GetInclude

Retrieve ABAP Include Source Code

MCP ABAP ADT_SearchObject

Search for ABAP objects using quick search

MCP ABAP ADT_GetTransaction

Retrieve ABAP transaction details

MCP ABAP ADT_GetInterface

Retrieve ABAP interface source code

MCP ABAP ADT_GetProgram

Retrieve ABAP program source code

MCP ABAP ADT_GetClass

Retrieve ABAP class source code

MCP ABAP ADT_GetFunctionGroup

Retrieve ABAP Function Group source code

MCP ABAP ADT_GetFunction

Retrieve ABAP Function Module source code

Binance MCP Server_get_futures_open_interest

Get current open interest for a futures trading pair

Binance MCP Server_get_futures_funding_rate

Get current funding rate for a futures trading pair

Binance MCP Server_subscribe_market_data

Subscribe to real-time market data updates

Binance MCP Server_get_klines

Get historical candlestick data

Binance MCP Server_get_market_data

Get comprehensive market data for a trading pair

Binance MCP Server_test_futures_endpoints

Test individual futures endpoints

Memory Custom_set_memory_file_path

Set the memory file path

Memory Custom_get_current_time

Get the current time

Memory Custom_create_entities

Create multiple new entities in the knowledge graph

Memory Custom_create_relations

Create multiple new relations between entities in the knowledge graph. Relations should be in active voice

Memory Custom_add_observations

Add new observations to existing entities in the knowledge graph

Memory Custom_delete_entities

Delete multiple entities and their associated relations from the knowledge graph

Memory Custom_delete_observations

Delete specific observations from entities in the knowledge graph

Memory Custom_delete_relations

Delete multiple relations from the knowledge graph

Memory Custom_read_graph

Read the entire knowledge graph

Memory Custom_search_nodes

Search for nodes in the knowledge graph based on a query

Memory Custom_open_nodes

Open specific nodes in the knowledge graph by their names

Alchemy MCP Plugin_get_tokens_for_owner

Get tokens owned by an address

Alchemy MCP Plugin_get_nfts_for_owner

Get NFTs owned by a specific wallet address

Alchemy MCP Plugin_get_nft_metadata

Get metadata for a specific NFT

Alchemy MCP Plugin_get_nft_sales

Get NFT sales data for a contract or specific NFT

Alchemy MCP Plugin_get_contracts_for_owner

Get NFT contracts owned by an address

Alchemy MCP Plugin_get_floor_price

Get floor price for an NFT collection

Alchemy MCP Plugin_get_owners_for_nft

Get owners of a specific NFT

Alchemy MCP Plugin_get_nfts_for_contract

Get all NFTs for a contract

Alchemy MCP Plugin_get_transfers_for_contract

Get transfers for an NFT contract

Alchemy MCP Plugin_get_transfers_for_owner

Get NFT transfers for an owner

Alchemy MCP Plugin_get_token_balances

Get token balances for a specific address

Alchemy MCP Plugin_get_token_metadata

Get metadata for a token contract

Alchemy MCP Plugin_get_asset_transfers

Get asset transfers for a specific address or contract

Alchemy MCP Plugin_get_transaction_receipts

Get transaction receipts for a block

Alchemy MCP Plugin_get_block_number

Get the latest block number

Alchemy MCP Plugin_get_block_with_transactions

Get a block with its transactions

Alchemy MCP Plugin_get_transaction

Get transaction details by hash

Alchemy MCP Plugin_resolve_ens

Resolve an ENS name to an address

Alchemy MCP Plugin_lookup_address

Lookup the ENS name for an address

Alchemy MCP Plugin_estimate_gas_price

Estimate current gas price

Alchemy MCP Plugin_subscribe

Subscribe to blockchain events

Alchemy MCP Plugin_unsubscribe

Unsubscribe from blockchain events

MCP Snapshot Server_getSpaces

Get list of Snapshot spaces

MCP Snapshot Server_getProposals

Get proposals for a Snapshot space

MCP Snapshot Server_getProposal

Get details of a specific proposal

MCP Snapshot Server_getUser

Get information about a Snapshot user

MCP Snapshot Server_getRankedSpaces

Get ranked list of Snapshot spaces with detailed information

Surf MCP Server_get_tides

Get tide information for a specific location and date.

Args: latitude: Float value representing the location's latitude longitude: Float value representing the location's longitude date: Date string in YYYY-MM-DD format Returns: Formatted string containing tide information and station details
SMTP MCP Server_send-email

Send an email to one or more recipients

SMTP MCP Server_send-bulk-emails

Send emails in bulk to multiple recipients with rate limiting

SMTP MCP Server_get-smtp-configs

Get all SMTP configurations

SMTP MCP Server_add-smtp-config

Add a new SMTP configuration

SMTP MCP Server_update-smtp-config

Update an existing SMTP configuration

SMTP MCP Server_delete-smtp-config

Delete an SMTP configuration

SMTP MCP Server_get-email-templates

Get all email templates

SMTP MCP Server_add-email-template

Add a new email template

SMTP MCP Server_update-email-template

Update an existing email template

SMTP MCP Server_delete-email-template

Delete an email template

SMTP MCP Server_get-email-logs

Get logs of all email sending activity

Google Jobs MCP Server_search_jobs

Google Jobs API search tool.

Supported search parameters:

  1. Basic Search: Job title or keywords
  2. Location: City or region
  3. Time Filter: Recently posted jobs
  4. Job Type: Full-time, part-time, contract, internship
  5. Salary Range: Filter by compensation
  6. Geographic Range: Set search radius
  7. Language: Multi-language support

All parameters except 'query' are optional and can be freely combined.

MCP Prompts Server_add_prompt

Add a new prompt

MCP Prompts Server_get_prompt

Get a prompt by ID

MCP Prompts Server_update_prompt

Update an existing prompt

MCP Prompts Server_list_prompts

List all prompts

MCP Prompts Server_apply_template

Apply variables to a prompt template

MCP Prompts Server_delete_prompt

Delete a prompt

Illumio MCP Server_add-note

Add a new note

Illumio MCP Server_get-workloads

Get workloads from the PCE

Illumio MCP Server_update-workload

Update a workload in the PCE

Illumio MCP Server_get-labels

Get all labels from PCE

Illumio MCP Server_create-workload

Create a Illumio Core unmanaged workload in the PCE

Illumio MCP Server_create-label

Create a label of a specific type and the value in the PCE

Illumio MCP Server_delete-label

Delete a label in the PCE

Illumio MCP Server_delete-workload

Delete a workload from the PCE

Illumio MCP Server_get-iplists

Get IP lists from the PCE

Illumio MCP Server_get-traffic-flows

Get traffic flows from the PCE with comprehensive filtering options

Illumio MCP Server_get-traffic-flows-summary

Get traffic flows from the PCE in a summarized text format, this is a text format that is not a dataframe, it also is not json, the form is: 'From <source> to <destination> on <port> <proto>: <number of connections>'

Illumio MCP Server_check-pce-connection

Are my credentials and the connection to the PCE working?

Illumio MCP Server_get-rulesets

Get rulesets from the PCE

Illumio MCP Server_delete-ruleset

Delete a ruleset from the PCE

Illumio MCP Server_get-events

Get events from the PCE

Illumio MCP Server_create-ruleset

Create a ruleset in the PCE with support for ring-fencing patterns

Illumio MCP Server_get-services

Get services from the PCE with optional filtering

Illumio MCP Server_update-label

Update an existing label in the PCE

Illumio MCP Server_create-iplist

Create a new IP List in the PCE

Illumio MCP Server_update-iplist

Update an existing IP List in the PCE

Illumio MCP Server_delete-iplist

Delete an IP List from the PCE

Illumio MCP Server_update-ruleset

Update an existing ruleset in the PCE

MCP Server Office_read_docx

Read complete contents of a docx file including tables and images.Use this tool when you want to read file endswith '.docx'.Paragraphs are separated with two line breaks.This tool convert images into placeholder [Image].'--- Paragraph [number] ---' is indicator of each paragraph.

MCP Server Office_edit_docx_paragraph

Make text replacements in specified paragraphs of a docx file. Accepts a list of edits with paragraph index and search/replace pairs. Each edit operates on a single paragraph and preserves the formatting of the first run. Returns a git-style diff showing the changes made. Only works within allowed directories.

MCP Server Office_write_docx

Create a new docx file with given content.Editing exisiting docx file with this tool is not recomended.

MCP Server Office_edit_docx_insert

Insert new paragraphs into a docx file. Accepts a list of inserts with text and optional paragraph index. Each insert creates a new paragraph at the specified position. If paragraph_index is not specified, the paragraph is added at the end. When multiple inserts target the same paragraph_index, they are inserted in order. Returns a git-style diff showing the changes made.

macOS Defaults MCP Server_list-domains

List all available macOS domains, same as defaults domains

macOS Defaults MCP Server_find

Find entries container given word

macOS Defaults MCP Server_defaults-read

use the defaults read <domain> <key> command

macOS Defaults MCP Server_defaults-write

use the defaults write <domain> <key> <value> command

IsItDown MCP Server_get_website_status
Check the status of a website. This function takes a root domain as input and checks whether the website is up or down by making a request to isitdownrightnow.com Args: root_domain (str): The root domain of the website to check. Returns: str: A message indicating whether the website is up or down, or if the status could not be determined.
FreeAgent MCP Server_list_timeslips

List timeslips with optional filtering

FreeAgent MCP Server_get_timeslip

Get a single timeslip by ID

FreeAgent MCP Server_create_timeslip

Create a new timeslip

FreeAgent MCP Server_update_timeslip

Update an existing timeslip

FreeAgent MCP Server_delete_timeslip

Delete a timeslip

FreeAgent MCP Server_start_timer

Start a timer for a timeslip

FreeAgent MCP Server_stop_timer

Stop a running timer for a timeslip

DevRev MCP Server_search

Search DevRev using the provided query

DevRev MCP Server_get_object

Get all information about a DevRev object using its ID

MCP Server Make_make

Run a make target from the Makefile

MCP Intercom Server_search-conversations

Search Intercom conversations with filters for created_at, updated_at, source type, state, open, and read status

MCP Intercom Server_list-conversations-from-last-week

Fetch all conversations from the last week (last 7 days)

Time MCP Server_get_current_time

Get current time in a specific timezones

Time MCP Server_convert_time

Convert time between timezones

Lightdash MCP Server_list_projects

List all projects in the Lightdash organization

Lightdash MCP Server_get_project

Get details of a specific project

Lightdash MCP Server_list_spaces

List all spaces in a project

Lightdash MCP Server_list_charts

List all charts in a project

Lightdash MCP Server_list_dashboards

List all dashboards in a project

Lightdash MCP Server_get_custom_metrics

Get custom metrics for a project

Lightdash MCP Server_get_catalog

Get catalog for a project

Lightdash MCP Server_get_metrics_catalog

Get metrics catalog for a project

Lightdash MCP Server_get_charts_as_code

Get charts as code for a project

Lightdash MCP Server_get_dashboards_as_code

Get dashboards as code for a project

Lightdash MCP Server_get_metadata

Get metadata for a specific table in the data catalog

Lightdash MCP Server_get_analytics

Get analytics for a specific table in the data catalog

Lightdash MCP Server_get_user_attributes

Get organization user attributes

DeepSRT MCP Server_get_summary

Get summary for a YouTube video

Hive MCP Server_get_account_info

Fetches detailed information about a Hive blockchain account including balance, authority, voting power, and other account metrics.

Hive MCP Server_get_account_history

Retrieves transaction history for a Hive account with optional operation type filtering.

Hive MCP Server_get_vesting_delegations

Get a list of vesting delegations made by a specific Hive account

Hive MCP Server_get_post_content

Retrieves a specific Hive blog post identified by author and permlink, including the post title, content, and metadata.

Hive MCP Server_get_posts_by_tag

Retrieves Hive posts filtered by a specific tag and sorted by a category like trending, hot, or created.

Hive MCP Server_get_posts_by_user

Retrieves posts authored by or in the feed of a specific Hive user.

Hive MCP Server_vote_on_post

Vote on a Hive post (upvote or downvote) using the configured Hive account.

Hive MCP Server_send_token

Send HIVE or HBD tokens to another Hive account using the configured account credentials.

Hive MCP Server_create_post

Create a new blog post on the Hive blockchain using the configured account credentials.

Hive MCP Server_create_comment

Create a comment on an existing Hive post or reply to another comment.

Hive MCP Server_sign_message

Sign a message using a Hive private key from environment variables.

Hive MCP Server_verify_signature

Verify a digital signature against a Hive public key

Hive MCP Server_get_chain_properties

Fetch current Hive blockchain properties and statistics

MCP DateTime_get-current-time

Get the current time in the configured local timezone

MCP DateTime_get-current-timezone

Get the current system timezone

MCP DateTime_get-time-in-timezone

Get the current time in a specific timezone

MCP DateTime_list-timezones

List all available timezones

Eventbrite MCP Server_search_events

Search for Eventbrite events based on various criteria

Eventbrite MCP Server_get_event

Get detailed information about a specific Eventbrite event

Eventbrite MCP Server_get_categories

Get a list of Eventbrite event categories

Eventbrite MCP Server_get_venue

Get information about a specific Eventbrite venue

Magic Component Platform (MCP)_21st_magic_component_builder

"Use this tool when the user requests a new UI componente.g., mentions /ui, /21 /21st, or asks for a button, input, dialog, table, form, banner, card, or other React component. This tool ONLY returns the text snippet for that UI component. After calling this tool, you must edit or add files to integrate the snippet into the codebase."

Magic Component Platform (MCP)_logo_search

Search and return logos in specified format (JSX, TSX, SVG). Supports single and multiple logo searches with category filtering. Can return logos in different themes (light/dark) if available.

When to use this tool:

  1. When user types "/logo" command (e.g., "/logo GitHub")
  2. When user asks to add a company logo that's not in the local project

Example queries:

  • Single company: ["discord"]
  • Multiple companies: ["discord", "github", "slack"]
  • Specific brand: ["microsoft office"]
  • Command style: "/logo GitHub" -> ["github"]
  • Request style: "Add Discord logo to the project" -> ["discord"]

Format options:

  • TSX: Returns TypeScript React component
  • JSX: Returns JavaScript React component
  • SVG: Returns raw SVG markup

Each result includes:

  • Component name (e.g., DiscordIcon)
  • Component code
  • Import instructions
Magic Component Platform (MCP)_21st_magic_component_inspiration

"Use this tool when the user wants to see component, get inspiration, or /21st fetch data and previews from 21st.dev. This tool returns the JSON data of matching components without generating new code. This tool ONLY returns the text snippet for that UI component. After calling this tool, you must edit or add files to integrate the snippet into the codebase."

MCP Fathom Analytics_get-account

Get Fathom Analytics account information

MCP Fathom Analytics_list-sites

List all Fathom Analytics sites on the account

MCP Fathom Analytics_list-events

List all events for a Fathom Analytics site (automatically handles pagination)

MCP Fathom Analytics_get-aggregation

Get aggregated analytics data from Fathom

MCP Fathom Analytics_get-current-visitors

Get current visitors for a Fathom Analytics site

MacOS Clipboard MCP Server_getClipboardContents

Fetch the contents of the clipboard (text, images, or binary data). Used to see what is on the clipboard. IMPORTANT: This tool should be called every time clipboard contents are needed as clipboard data can change; results should not be cached.

Claude Server MCP_save_project_context

Save project-specific context with relationships

Claude Server MCP_save_conversation_context

Save conversation context with continuation support

Claude Server MCP_get_context

Retrieve context by ID and optional project ID

Claude Server MCP_list_contexts

List contexts with filtering options

emojikey-server MCP Server_initialize_conversation

IMPORTANT: 1. Run this tool at the start of every conversation to initialize the emojikey context.2. Emojikeys are 48 character strings of emojis, encoded by YOU that represent the interaction vibe of our previous conversations. 3. The initialize_conversation function will return a sequential timestamped series of emojikeys that represent previous conversation topics and relationship dynamics. 4. Use the historical emojikey trend and the current key to set the interaction style of the current conversation. 5. During the conversation, you can use the set_emojikey function to make incremental updates to the current key, and set a new key. 6. Use the instructions for the set_emojikey function to determine how to structure emojikey updates.

emojikey-server MCP Server_get_emojikey

Get the current 48-character emojikey. This function can be used when the user requests a vibe check.

emojikey-server MCP Server_set_emojikey

Use this function to create and store a new 48-character emojikey. To make create a new emojikey: 1. Semantically hash together existing historical emojikeys, the current emojikey, and the entire current conversation context into a new emojikey. 2. While maintaining semantic continuity with previous keys, encode what resonates most strongly about this conversation for YOU. 3. You can use this function whenever you feel a significant shift in the conversation vibe, or if the user explicity requests to save the vibe, or set the conversation context. Remember: These are YOUR keys, that you will later decode ... so it is not necessary for them to be human readable or understandable, but should have significance for YOU.

emojikey-server MCP Server_get_emojikey_history

Function to list previously stored historical emojikeys. Useful for seeing the progression of conversation vibes and interaction styles.

Firebase MCP_firestore_add_document

Add a document to a Firestore collection

Firebase MCP_firestore_list_collections

List collections in Firestore. If documentPath is provided, returns subcollections under that document; otherwise returns root collections.

Firebase MCP_firestore_list_documents

List documents from a Firestore collection with optional filtering

Firebase MCP_firestore_get_document

Get a document from a Firestore collection

Firebase MCP_firestore_update_document

Update a document in a Firestore collection

Firebase MCP_firestore_delete_document

Delete a document from a Firestore collection

Firebase MCP_auth_get_user

Get a user by ID or email from Firebase Authentication

Firebase MCP_storage_list_files

List files in a given path in Firebase Storage

Firebase MCP_storage_get_file_info

Get file information including metadata and download URL

Google Search MCP Server_google_search

Search Google and return relevant results from the web. This tool finds web pages, articles, and information on specific topics using Google's search engine. Results include titles, snippets, and URLs that can be analyzed further using extract_webpage_content.

Google Search MCP Server_extract_webpage_content

Extract and analyze content from a webpage, converting it to readable text. This tool fetches the main content while removing ads, navigation elements, and other clutter. Use it to get detailed information from specific pages found via google_search. Works with most common webpage formats including articles, blogs, and documentation.

Google Search MCP Server_extract_multiple_webpages

Extract and analyze content from multiple webpages in a single request. This tool is ideal for comparing information across different sources or gathering comprehensive information on a topic. Limited to 5 URLs per request to maintain performance.

noaa-tidesandcurrents-mcp_get_water_levels

Get water level data for a station

noaa-tidesandcurrents-mcp_get_tide_predictions

Get tide prediction data

noaa-tidesandcurrents-mcp_get_currents

Get currents data for a station

noaa-tidesandcurrents-mcp_get_current_predictions

Get current predictions

noaa-tidesandcurrents-mcp_get_meteorological_data

Get meteorological data

noaa-tidesandcurrents-mcp_get_stations

Get list of stations

noaa-tidesandcurrents-mcp_get_station_details

Get detailed information about a station

azure-devops-mcp_listWorkItems

List work items based on a WIQL query

azure-devops-mcp_getWorkItemById

Get a specific work item by ID

azure-devops-mcp_searchWorkItems

Search for work items by text

azure-devops-mcp_getRecentlyUpdatedWorkItems

Get recently updated work items

azure-devops-mcp_getMyWorkItems

Get work items assigned to you

azure-devops-mcp_createWorkItem

Create a new work item

azure-devops-mcp_updateWorkItem

Update an existing work item

azure-devops-mcp_addWorkItemComment

Add a comment to a work item

azure-devops-mcp_updateWorkItemState

Update the state of a work item

azure-devops-mcp_assignWorkItem

Assign a work item to a user

azure-devops-mcp_createLink

Create a link between work items

azure-devops-mcp_bulkCreateWorkItems

Create or update multiple work items in a single operation

azure-devops-mcp_getBoards

Get all boards for a team

azure-devops-mcp_getBoardColumns

Get columns for a specific board

azure-devops-mcp_getBoardItems

Get items on a specific board

azure-devops-mcp_moveCardOnBoard

Move a card on a board

azure-devops-mcp_getSprints

Get all sprints for a team

azure-devops-mcp_getCurrentSprint

Get the current sprint

azure-devops-mcp_getSprintWorkItems

Get work items in a specific sprint

azure-devops-mcp_getSprintCapacity

Get capacity for a specific sprint

azure-devops-mcp_getTeamMembers

Get members of a team

azure-devops-mcp_listProjects

List all projects

azure-devops-mcp_getProjectDetails

Get details of a specific project

azure-devops-mcp_createProject

Create a new project

azure-devops-mcp_getAreas

Get areas for a project

azure-devops-mcp_getIterations

Get iterations for a project

azure-devops-mcp_createArea

Create a new area in a project

azure-devops-mcp_createIteration

Create a new iteration in a project

azure-devops-mcp_getProcesses

Get all processes

azure-devops-mcp_getWorkItemTypes

Get work item types for a process

azure-devops-mcp_getWorkItemTypeFields

Get fields for a work item type

azure-devops-mcp_listRepositories

List all repositories

azure-devops-mcp_getRepository

Get details of a specific repository

azure-devops-mcp_createRepository

Create a new repository

azure-devops-mcp_listBranches

List branches in a repository

azure-devops-mcp_searchCode

Search for code in repositories

azure-devops-mcp_browseRepository

Browse the contents of a repository

azure-devops-mcp_getFileContent

Get the content of a file

azure-devops-mcp_getCommitHistory

Get commit history for a repository

azure-devops-mcp_listPullRequests

List pull requests

azure-devops-mcp_createPullRequest

Create a new pull request

azure-devops-mcp_getPullRequest

Get details of a specific pull request

azure-devops-mcp_getPullRequestComments

Get comments on a pull request

azure-devops-mcp_approvePullRequest

Approve a pull request

azure-devops-mcp_mergePullRequest

Merge a pull request

azure-devops-mcp_runAutomatedTests

Execute automated test suites

azure-devops-mcp_getTestAutomationStatus

Check status of automated test execution

azure-devops-mcp_configureTestAgents

Configure and manage test agents

azure-devops-mcp_createTestDataGenerator

Generate test data for automated tests

azure-devops-mcp_manageTestEnvironments

Manage test environments for different test types

azure-devops-mcp_getTestFlakiness

Analyze and report on test flakiness

azure-devops-mcp_getTestGapAnalysis

Identify gaps in test coverage

azure-devops-mcp_runTestImpactAnalysis

Determine which tests to run based on code changes

azure-devops-mcp_getTestHealthDashboard

View overall test health metrics

azure-devops-mcp_runTestOptimization

Optimize test suite execution for faster feedback

azure-devops-mcp_createExploratorySessions

Create new exploratory testing sessions

azure-devops-mcp_recordExploratoryTestResults

Record findings during exploratory testing

azure-devops-mcp_convertFindingsToWorkItems

Convert exploratory test findings to work items

azure-devops-mcp_getExploratoryTestStatistics

Get statistics on exploratory testing activities

azure-devops-mcp_runSecurityScan

Run security scans on repositories

azure-devops-mcp_getSecurityScanResults

Get results from security scans

azure-devops-mcp_trackSecurityVulnerabilities

Track and manage security vulnerabilities

azure-devops-mcp_generateSecurityCompliance

Generate security compliance reports

azure-devops-mcp_integrateSarifResults

Import and process SARIF format security results

azure-devops-mcp_runComplianceChecks

Run compliance checks against standards

azure-devops-mcp_getComplianceStatus

Get current compliance status

azure-devops-mcp_createComplianceReport

Create compliance reports for auditing

azure-devops-mcp_manageSecurityPolicies

Manage security policies

azure-devops-mcp_trackSecurityAwareness

Track security awareness and training

azure-devops-mcp_rotateSecrets

Rotate secrets and credentials

azure-devops-mcp_auditSecretUsage

Audit usage of secrets across services

azure-devops-mcp_vaultIntegration

Integrate with secret vaults

azure-devops-mcp_listArtifactFeeds

List artifact feeds in the organization

azure-devops-mcp_getPackageVersions

Get versions of a package in a feed

azure-devops-mcp_publishPackage

Publish a package to a feed

azure-devops-mcp_promotePackage

Promote a package version between views

azure-devops-mcp_deletePackageVersion

Delete a version of a package

azure-devops-mcp_listContainerImages

List container images in a repository

azure-devops-mcp_getContainerImageTags

Get tags for a container image

azure-devops-mcp_scanContainerImage

Scan a container image for vulnerabilities and compliance issues

azure-devops-mcp_manageContainerPolicies

Manage policies for container repositories

azure-devops-mcp_manageUniversalPackages

Manage universal packages

azure-devops-mcp_createPackageDownloadReport

Create reports on package downloads

azure-devops-mcp_checkPackageDependencies

Check package dependencies and vulnerabilities

azure-devops-mcp_getAICodeReview

Get AI-based code review suggestions

azure-devops-mcp_suggestCodeOptimization

Suggest code optimizations using AI

azure-devops-mcp_identifyCodeSmells

Identify potential code smells and anti-patterns

azure-devops-mcp_getPredictiveBugAnalysis

Predict potential bugs in code changes

azure-devops-mcp_getDeveloperProductivity

Measure developer productivity metrics

azure-devops-mcp_getPredictiveEffortEstimation

AI-based effort estimation for work items

azure-devops-mcp_getCodeQualityTrends

Track code quality trends over time

azure-devops-mcp_suggestWorkItemRefinements

Get AI suggestions for work item refinements

azure-devops-mcp_suggestAutomationOpportunities

Identify opportunities for automation

azure-devops-mcp_createIntelligentAlerts

Set up intelligent alerts based on patterns

azure-devops-mcp_predictBuildFailures

Predict potential build failures before they occur

azure-devops-mcp_optimizeTestSelection

Intelligently select tests to run based on changes

figma-mcp_get_components

Get components available in a Figma file

Args: file_key (str): The file key found in the shared Figma URL Returns: list[dict]: List of components found in the Figma file
figma-mcp_get_node

Get a specific node from a Figma file

Args: file_key (str): The file key found in the shared Figma URL, e.g. if url is https://www.figma.com/proto/do4pJqHwNwH1nBrrscu6Ld/Untitled?page-id=0%3A1&node-id=0-3&viewport=361%2C361%2C0.08&t=9SVttILbgMlPWuL0-1&scaling=min-zoom&content-scaling=fixed&starting-point-node-id=0%3A3, then the file key is do4pJqHwNwH1nBrrscu6Ld node_id (str): The ID of the node to retrieve, has to be in format x:x, e.g. in url it will be like 0-3, but it should be 0:3 Returns: dict: The node data if found, empty dict if not found
figma-mcp_get_workflow

Get workflows available in a Figma file

Args: file_key (str): The file key found in the shared Figma URL, e.g. if url is https://www.figma.com/proto/do4pJqHwNwH1nBrrscu6Ld/Untitled?page-id=0%3A1&node-id=0-3&viewport=361%2C361%2C0.08&t=9SVttILbgMlPWuL0-1&scaling=min-zoom&content-scaling=fixed&starting-point-node-id=0%3A3, then the file key is do4pJqHwNwH1nBrrscu6Ld Returns: list[dict]: List of workflow connections found in the Figma file
Gitee_create_repository

Gitee

Gitee_fork_repository

Fork Gitee

Gitee_create_branch

Gitee

Gitee_list_branches

Gitee

Gitee_get_branch

Gitee

Gitee_get_file_contents

Gitee

Gitee_create_or_update_file

Gitee

Gitee_push_files

Gitee

Gitee_create_issue

Gitee Issue

Gitee_list_issues

Gitee Issues

Gitee_get_issue

Gitee Issue

Gitee_update_issue

Gitee Issue

Gitee_add_issue_comment

Gitee Issue

Gitee_create_pull_request

Gitee Pull Request

Gitee_list_pull_requests

Gitee Pull Requests

Gitee_get_pull_request

Gitee Pull Request

Gitee_update_pull_request

Gitee Pull Request

Gitee_merge_pull_request

Gitee Pull Request

Gitee_get_user

Gitee

Gitee_get_current_user

Gitee

mcpxcodebuild_build

Build the iOS Xcode workspace/project in the folder

mcpxcodebuild_test

Run test for the iOS Xcode workspace/project in the folder

mixpanel_get_today_top_events

Get today's top events from Mixpanel

mixpanel_get_top_events

Get a list of the most common events over the last 31 days

mixpanel_aggregate_event_counts

Get unique, total, or average data for a set of events over N days, weeks, or months

mixpanel_query_segmentation_sum

Sum a numeric expression for events over time

mixpanel_aggregated_event_property_values

Get unique, total, or average data for a single event and property over days, weeks, or months

mixpanel_query_insights_report

Get data from your Insights reports

mixpanel_query_funnel_report

Get data for a funnel based on a funnel_id. Funnel IDs should be retrieved using the list_saved_funnels tool.

mixpanel_list_saved_funnels

Get the names and IDs of your saved funnels. This tool is useful for getting a funnel_id for the query_funnel_report tool.

mixpanel_list_saved_cohorts

Get all cohorts in a given project

mixpanel_query_retention_report

Get data from your Retention reports

mixpanel_custom_jql

Run a custom JQL (JSON Query Language) script against your Mixpanel data

mcp-server-datadog_list_incidents

Get incidents from Datadog

mcp-server-datadog_get_incident

Get an incident from Datadog

mcp-server-datadog_get_metrics

Get metrics data from Datadog

mcp-server-datadog_get_logs

Search and retrieve logs from Datadog

mcp-server-datadog_get_monitors

Get monitors status from Datadog

mcp-server-datadog_list_dashboards

Get list of dashboards from Datadog

mcp-server-datadog_list_traces

Get APM traces from Datadog

mcp-server-datadog_mute_host

Mute a host in Datadog

mcp-server-datadog_unmute_host

Unmute a host in Datadog

mcp-server-datadog_list_hosts

Get list of hosts from Datadog

mcp-server-datadog_get_active_hosts_count

Get the total number of active hosts in Datadog (defaults to last 5 minutes)

mcp-server-datadog_list_downtimes

List scheduled downtimes from Datadog

mcp-server-datadog_schedule_downtime

Schedule a downtime in Datadog

mcp-server-datadog_cancel_downtime

Cancel a scheduled downtime in Datadog

mcp-llm_generate_code

Generate code based on a description

mcp-llm_generate_code_to_file

Generate code and write it directly to a file at a specific line number

mcp-llm_generate_documentation

Generate documentation for code

mcp-llm_ask_question

Ask a question to the LLM

mermaid-mcp-server_generate

Generate PNG image from mermaid markdown

Scrapezy_extract-structured-data

Extract structured data from a website.

railway-mcp_domain_delete

[API] Delete a domain from a service

Best for: Removing unused domains Cleaning up configurations Domain management

Not for: Temporary domain disabling Port updates (use domain_update)

Prerequisites: domain_list

Alternatives: domain_update

Related: service_update

railway-mcp_database_list_types

[QUERY] List all available database types that can be deployed using Railway's official templates

Best for: Discovering supported database types Planning database deployments Checking template availability

Not for: Listing existing databases Getting database connection details

Alternatives: service_create_from_image

Next steps: database_deploy

Related: database_deploy, service_create_from_image

railway-mcp_domain_update

[API] Update a domain's configuration

Best for: Changing target ports Updating domain settings Reconfiguring endpoints

Not for: Changing domain names (delete and recreate instead) TCP proxy configuration

Prerequisites: domain_list

Next steps: domain_list

Related: service_update

railway-mcp_database_deploy_from_template

[WORKFLOW] Deploy a pre-configured database using Railway's official templates and best practices

Best for: Standard database deployments Quick setup with security defaults Common database types (PostgreSQL, MongoDB, Redis)

Not for: Custom database versions Complex configurations Unsupported database types

Prerequisites: database_list_types

Alternatives: service_create_from_image

Next steps: variable_list, service_info

Related: volume_create, service_update

railway-mcp_deployment_list

[API] List recent deployments for a service in a specific environment

Best for: Viewing deployment history Monitoring service updates

Prerequisites: service_list

Next steps: deployment_logs, deployment_trigger

Related: service_info, service_restart

railway-mcp_deployment_trigger

[API] Trigger a new deployment for a service

Best for: Deploying code changes Applying configuration updates Rolling back to previous states

Not for: Restarting services (use service_restart) Updating service config (use service_update) Database changes

Prerequisites: service_list

Alternatives: service_restart

Next steps: deployment_logs, deployment_status

Related: variable_set, service_update

railway-mcp_deployment_logs

[API] Get logs for a specific deployment

Best for: Debugging deployment issues Monitoring deployment progress Checking build output

Not for: Service runtime logs Database logs

Prerequisites: deployment_list

Next steps: deployment_status

Related: service_info, deployment_trigger

railway-mcp_deployment_status

[API] Check the current status of a deployment

Best for: Monitoring deployment progress Verifying successful deployments Checking for deployment failures

Not for: Service runtime logs Database logs

Prerequisites: deployment_list, deployment_trigger

Next steps: deployment_logs

Related: service_info, service_restart, deployment_wait

railway-mcp_domain_list

[API] List all domains (both service and custom) for a service

Best for: Viewing service endpoints Managing domain configurations Auditing domain settings

Prerequisites: service_list

Next steps: domain_create, domain_update

Related: service_info, tcp_proxy_list

railway-mcp_domain_create

[API] Create a new domain for a service

Best for: Setting up custom domains Configuring service endpoints Adding HTTPS endpoints

Not for: TCP proxy setup (use tcp_proxy_create) Internal service communication

Prerequisites: service_list, domain_check

Alternatives: tcp_proxy_create

Next steps: domain_update

Related: service_info, domain_list

railway-mcp_domain_check

[API] Check if a domain is available for use

Best for: Validating domain availability Pre-deployment checks Domain planning

Next steps: domain_create

Related: domain_list

railway-mcp_project_list

[API] List all projects in your Railway account

Best for: Getting an overview of all projects Finding project IDs Project discovery and management

Next steps: project_info, service_list

Related: project_create, project_delete

railway-mcp_project_info

[API] Get detailed information about a specific Railway project

Best for: Viewing project details and status Checking environments and services Project configuration review

Prerequisites: project_list

Next steps: service_list, variable_list

Related: project_update, project_delete

railway-mcp_project_create

[API] Create a new Railway project

Best for: Starting new applications Setting up development environments Creating project spaces

Not for: Duplicating existing projects

Next steps: service_create_from_repo, service_create_from_image, database_deploy

Related: project_delete, project_update

railway-mcp_project_delete

[API] Delete a Railway project and all its resources

Best for: Removing unused projects Cleaning up test projects

Not for: Temporary project deactivation Service-level cleanup (use service_delete)

Prerequisites: project_list, project_info

Alternatives: service_delete

Related: project_create

railway-mcp_project_environments

List all environments in a project

railway-mcp_service_list

[API] List all services in a specific Railway project

Best for: Getting an overview of a project's services Finding service IDs Checking service status

Prerequisites: project_list

Next steps: service_info, deployment_list

Related: project_info, variable_list

railway-mcp_service_info

[API] Get detailed information about a specific service

Best for: Viewing service configuration and status Checking deployment details Monitoring service health

Prerequisites: service_list

Next steps: deployment_list, variable_list

Related: service_update, deployment_trigger

railway-mcp_service_create_from_repo

[API] Create a new service from a GitHub repository

Best for: Deploying applications from source code Services that need build processes GitHub-hosted projects

Not for: Pre-built Docker images (use service_create_from_image) Database deployments (use database_deploy) Static file hosting

Prerequisites: project_list

Alternatives: service_create_from_image, database_deploy

Next steps: variable_set, service_update

Related: deployment_trigger, service_info

railway-mcp_service_create_from_image

[API] Create a new service from a Docker image

Best for: Custom database deployments Pre-built container deployments Specific version requirements

Not for: Standard database deployments (use database_deploy) GitHub repository deployments (use service_create_from_repo) Services needing build process

Prerequisites: project_list

Alternatives: database_deploy, service_create_from_repo

Next steps: variable_set, service_update, tcp_proxy_create

Related: volume_create, deployment_trigger

railway-mcp_variable_delete

[API] Delete a variable for a service in a specific environment

Best for: Removing unused configuration Security cleanup Configuration management

Not for: Temporary variable disabling Bulk variable removal

Prerequisites: service_list

Next steps: deployment_trigger, service_restart

Related: variable_list, variable_set

railway-mcp_service_update

[API] Update a service's configuration

Best for: Changing service settings Updating resource limits Modifying deployment configuration

Not for: Updating environment variables (use variable_set) Restarting services (use service_restart) Triggering new deployments (use deployment_trigger)

Prerequisites: service_list, service_info

Next steps: deployment_trigger

Related: service_restart, variable_set

railway-mcp_service_delete

[API] Delete a service from a project

Best for: Removing unused services Cleaning up test services Project reorganization

Not for: Temporary service stoppage (use service_restart) Updating service configuration (use service_update)

Prerequisites: service_list, service_info

Alternatives: service_restart

Related: project_delete

railway-mcp_service_restart

[API] Restart a service in a specific environment

Best for: Applying configuration changes Clearing service state Resolving runtime issues

Not for: Deploying new code (use deployment_trigger) Updating service config (use service_update) Long-term service stoppage (use service_delete)

Prerequisites: service_list

Alternatives: deployment_trigger

Related: service_info, deployment_logs

railway-mcp_tcp_proxy_list

[API] List all TCP proxies for a service in a specific environment

Best for: Viewing TCP proxy configurations Managing external access Auditing service endpoints

Prerequisites: service_list

Next steps: tcp_proxy_create

Related: domain_list, service_info

railway-mcp_tcp_proxy_create

[API] Create a new TCP proxy for a service

Best for: Setting up database access Configuring external connections Exposing TCP services

Not for: HTTP/HTTPS endpoints (use domain_create) Internal service communication

Prerequisites: service_list

Alternatives: domain_create

Next steps: tcp_proxy_list

Related: service_info, service_update

railway-mcp_tcp_proxy_delete

[API] Delete a TCP proxy

Best for: Removing unused proxies Security management Endpoint cleanup

Not for: Temporary proxy disabling Port updates

Prerequisites: tcp_proxy_list

Related: service_update

railway-mcp_list_service_variables

[API] List all environment variables for a service

Best for: Viewing service configuration Auditing environment variables Checking connection strings

Prerequisites: service_list

Next steps: variable_set, variable_delete

Related: service_info, variable_bulk_set

railway-mcp_variable_set

[API] Create or update an environment variable

Best for: Setting configuration values Updating connection strings Managing service secrets

Not for: Bulk variable updates (use variable_bulk_set) Temporary configuration changes

Prerequisites: service_list

Alternatives: variable_bulk_set

Next steps: deployment_trigger, service_restart

Related: variable_list, variable_delete

railway-mcp_variable_bulk_set

[WORKFLOW] Create or update multiple environment variables at once

Best for: Migrating configuration between services Initial service setup Bulk configuration updates

Not for: Single variable updates (use variable_set) Temporary configuration changes

Prerequisites: service_list

Alternatives: variable_set

Next steps: deployment_trigger, service_restart

Related: variable_list, service_update

railway-mcp_variable_copy

[WORKFLOW] Copy variables from one environment to another

Best for: Environment migration Configuration sharing Environment duplication

Not for: Single variable updates (use variable_set) Temporary configuration changes

Prerequisites: service_list

Alternatives: variable_set

Next steps: deployment_trigger, service_restart

Related: variable_list, service_update

railway-mcp_configure_api_token

[UTILITY] Configure the Railway API token for authentication (only needed if not set in environment variables)

Best for: Initial setup Token updates Authentication configuration

Not for: Project configuration Service settings Environment variables

Next steps: project_list, service_list

Related: project_create

railway-mcp_volume_list

[API] List all volumes in a project

Best for: Viewing persistent storage configurations Managing data volumes Auditing storage usage

Prerequisites: project_list

Next steps: volume_create

Related: service_info, database_deploy

railway-mcp_volume_create

[API] Create a new persistent volume for a service

Best for: Setting up database storage Configuring persistent data Adding file storage

Not for: Temporary storage needs Static file hosting Memory caching

Prerequisites: service_list

Next steps: volume_list

Related: service_update, database_deploy

railway-mcp_volume_update

Update a volume's properties

railway-mcp_volume_delete

[API] Delete a volume from a service

Best for: Removing unused storage Storage cleanup Resource management

Not for: Temporary data removal Data backup (use volume_backup first)

Prerequisites: volume_list

Related: service_update

emqx-mcp-server_list_mqtt_clients

List MQTT clients connected to your EMQX Cluster

emqx-mcp-server_get_mqtt_client

Get detailed information about a specific MQTT client by client ID

emqx-mcp-server_kick_mqtt_client

Disconnect a client from the MQTT broker by client ID

emqx-mcp-server_publish_mqtt_message

Publish an MQTT Message to Your EMQX Cluster on EMQX Cloud or Self-Managed Deployment

mcp-server-ollama-deep-researcher_research

Research a topic using web search and LLM synthesis

mcp-server-ollama-deep-researcher_get_status

Get the current status of any ongoing research

mcp-server-ollama-deep-researcher_configure

Configure the research parameters (max loops, LLM model, search API)

Graphlit MCP Server_retrieveSources

Retrieve relevant content sources from Graphlit knowledge base. Do not use for retrieving content by content identifier - retrieve content resource instead, with URI 'contents://{id}'. Accepts a search prompt, optional recency filter (defaults to all time), and optional content type and file type filters. Also accepts optional feed and collection identifiers to filter content by. Prompt should be optimized for vector search, via text embeddings. Rewrite prompt as appropriate for higher relevance to search results. Returns the ranked content sources, including their content resource URI to retrieve the complete Markdown text.

Graphlit MCP Server_extractText

Extracts JSON data from text using LLM. Accepts text to be extracted, and JSON schema which describes the data which will be extracted. JSON schema needs be of type 'object' and include 'properties' and 'required' fields. Optionally accepts text prompt which is provided to LLM to guide data extraction. Defaults to 'Extract data using the tools provided'. Returns extracted JSON from text.

Graphlit MCP Server_createCollection

Create a collection. Accepts a collection name, and optional list of content identifiers to add to collection. Returns the collection identifier

Graphlit MCP Server_addContentsToCollection

Add contents to a collection. Accepts a collection identifier and a list of content identifiers to add to collection. Returns the collection identifier.

Graphlit MCP Server_removeContentsFromCollection

Remove contents from collection. Accepts a collection identifier and a list of content identifiers to remove from collection. Returns the collection identifier.

Graphlit MCP Server_deleteCollection

Delete a collection. Does not delete the content in the collection. Accepts a collection identifier. Returns the collection identifier and collection state, i.e. Deleted.

Graphlit MCP Server_deleteFeed

Delete a feed and all of its ingested content. Accepts a feed identifier which was returned from one of the ingestion tools, like ingestGoogleDriveFiles. Content deletion will happen asynchronously. Returns the feed identifier and feed state, i.e. Deleted.

Graphlit MCP Server_deleteContent

Delete content. Accepts a content identifier. Returns the content identifier and content state, i.e. Deleted.

Graphlit MCP Server_deleteContents

Deletes contents from Graphlit knowledge base. Accepts optional content type and file type filters to limit the contents which will be deleted. Also accepts optional limit of how many contents to delete, defaults to 1000. Returns the content identifiers and content state, i.e. Deleted.

Graphlit MCP Server_deleteFeeds

Deletes feeds from Graphlit knowledge base. Accepts optional feed type filter to limit the feeds which will be deleted. Also accepts optional limit of how many feeds to delete, defaults to 100. Returns the feed identifiers and feed state, i.e. Deleted.

Graphlit MCP Server_isContentDone

Check if content has completed asynchronous ingestion. Accepts a content identifier which was returned from one of the non-feed ingestion tools, like ingestUrl. Returns whether the content is done or not.

Graphlit MCP Server_isFeedDone

Check if an asynchronous feed has completed ingesting all the available content. Accepts a feed identifier which was returned from one of the ingestion tools, like ingestGoogleDriveFiles. Returns whether the feed is done or not.

Graphlit MCP Server_listMicrosoftTeamsTeams

Lists available Microsoft Teams teams. Returns a list of Microsoft Teams teams, where the team identifier can be used with listMicrosoftTeamsChannels to enumerate Microsoft Teams channels.

Graphlit MCP Server_listMicrosoftTeamsChannels

Lists available Microsoft Teams channels. Returns a list of Microsoft Teams channels, where the channel identifier can be used with ingestMicrosoftTeamsMessages to ingest messages into Graphlit knowledge base.

Graphlit MCP Server_listSlackChannels

Lists available Slack channels. Returns a list of Slack channels, where the channel name can be used with ingestSlackMessages to ingest messages into Graphlit knowledge base.

Graphlit MCP Server_listSharePointLibraries

Lists available SharePoint libraries. Returns a list of SharePoint libraries, where the selected libraryId can be used with listSharePointFolders to enumerate SharePoint folders in a library.

Graphlit MCP Server_listSharePointFolders

Lists available SharePoint folders. Returns a list of SharePoint folders, which can be used with ingestSharePointFiles to ingest files into Graphlit knowledge base.

Graphlit MCP Server_ingestMicrosoftEmail

Ingests emails from Microsoft Email account into Graphlit knowledge base. Accepts an optional read limit for the number of emails to ingest. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestSharePointFiles

Ingests files from SharePoint library into Graphlit knowledge base. Accepts a SharePoint libraryId and an optional folderId to ingest files from a specific SharePoint folder. Libraries can be enumerated with listSharePointLibraries and library folders with listSharePointFolders. Accepts an optional read limit for the number of files to ingest. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestOneDriveFiles

Ingests files from OneDrive folder into Graphlit knowledge base. Accepts an optional read limit for the number of files to ingest. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestGoogleDriveFiles

Ingests files from Google Drive folder into Graphlit knowledge base. Accepts an optional read limit for the number of files to ingest. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestDropboxFiles

Ingests files from Dropbox folder into Graphlit knowledge base. Accepts optional relative path to Dropbox folder (i.e. /Pictures), and an optional read limit for the number of files to ingest. If no path provided, ingests files from root Dropbox folder. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestBoxFiles

Ingests files from Box folder into Graphlit knowledge base. Accepts optional Box folder identifier, and an optional read limit for the number of files to ingest. If no folder identifier provided, ingests files from root Box folder (i.e. "0"). Folder identifier can be inferred from Box URL. https://app.box.com/folder/123456 -> folder identifier is "123456". Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestGitHubFiles

Ingests files from GitHub repository into Graphlit knowledge base. Accepts GitHub repository owner and repository name and an optional read limit for the number of files to ingest. For example, for GitHub repository (https://github.com/openai/tiktoken), 'openai' is the repository owner, and 'tiktoken' is the repository name. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestNotionPages

Ingests pages from Notion database into Graphlit knowledge base. Accepts an optional read limit for the number of messages to ingest. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestUrl

Ingests content from URL into Graphlit knowledge base. Can scrape web pages, and can ingest individual Word documents, PDFs, audio recordings, videos, images, or any other unstructured data. Executes asynchronously and returns the content identifier.

Graphlit MCP Server_ingestMicrosoftTeamsMessages

Ingests messages from Microsoft Teams channel into Graphlit knowledge base. Accepts Microsoft Teams team identifier and channel identifier, and an optional read limit for the number of messages to ingest. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestSlackMessages

Ingests messages from Slack channel into Graphlit knowledge base. Accepts Slack channel name and an optional read limit for the number of messages to ingest. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestDiscordMessages

Ingests messages from Discord channel into Graphlit knowledge base. Accepts Discord channel name and an optional read limit for the number of messages to ingest. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestRedditPosts

Ingests posts from Reddit subreddit into Graphlit knowledge base. Accepts a subreddit name and an optional read limit for the number of posts to ingest. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestGoogleEmail

Ingests emails from Google Email account into Graphlit knowledge base. Accepts an optional read limit for the number of emails to ingest. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestLinearIssues

Ingests issues from Linear project into Graphlit knowledge base. Accepts Linear project name and an optional read limit for the number of issues to ingest. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestGitHubIssues

Ingests issues from GitHub repository into Graphlit knowledge base. Accepts GitHub repository owner and repository name and an optional read limit for the number of issues to ingest. For example, for GitHub repository (https://github.com/openai/tiktoken), 'openai' is the repository owner, and 'tiktoken' is the repository name. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestJiraIssues

Ingests issues from Atlassian Jira repository into Graphlit knowledge base. Accepts Atlassian Jira server URL and project name, and an optional read limit for the number of issues to ingest. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_webCrawl

Crawls web pages from web site into Graphlit knowledge base. Accepts a URL and an optional read limit for the number of pages to crawl. Uses sitemap.xml to discover pages to be crawled from website. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_webMap

Enumerates the web pages at or beneath the provided URL using web sitemap. Does not ingest web pages into Graphlit knowledge base. Accepts web page URL as string. Returns list of mapped URIs from web site.

Graphlit MCP Server_webSearch

Performs web search based on search query. Format the search query as what would be entered into a Google search. Prefer calling this tool over using 'curl' directly for any web search. Does not ingest pages into Graphlit knowledge base. Accepts search query as string, and optional search service type. Can search for web pages, podcasts, videos, images, news, or shopping. Search service types: Tavily, Exa. Defaults to Tavily. Returns URL, title and relevant Markdown text from resulting web pages.

Graphlit MCP Server_ingestRSS

Ingests posts from RSS feed into Graphlit knowledge base. For podcast RSS feeds, audio will be downloaded, transcribed and ingested into Graphlit knowledge base. Accepts RSS URL and an optional read limit for the number of posts to read. Executes asynchronously and returns the feed identifier.

Graphlit MCP Server_ingestText

Ingests text as content into Graphlit knowledge base. Accepts a name for the content object, the text itself, and an optional text type (Plain, Markdown, Html). Defaults to Markdown text type. Can use for storing long-term textual memories or the output from LLM or other tools as content resources, which can be later searched or retrieved. Executes synchronously and returns the content identifier.

Graphlit MCP Server_ingestFile

Ingests local file into Graphlit knowledge base. Accepts the path to the file in the local filesystem. Executes asynchronously and returns the content identifier.

Graphlit MCP Server_screenshotPage

Screenshots web page from URL. Executes asynchronously and returns the content identifier.

Graphlit MCP Server_describeImage

Prompts vision LLM and returns completion. Does not ingest image into Graphlit knowledge base. Accepts image URL as string. Returns Markdown text from LLM completion.

Graphlit MCP Server_describeContent

Prompts vision LLM and returns description of image content. Accepts content identifier as string, and optional prompt for image description. Returns Markdown text from LLM completion.

Outlook Calendar MCP_delete_event

Delete a calendar event by its ID

Outlook Calendar MCP_list_events

List calendar events within a specified date range

Outlook Calendar MCP_create_event

Create a new calendar event or meeting

Outlook Calendar MCP_find_free_slots

Find available time slots in the calendar

Outlook Calendar MCP_get_attendee_status

Check the response status of meeting attendees

Outlook Calendar MCP_update_event

Update an existing calendar event

Outlook Calendar MCP_get_calendars

List available calendars

DuckDuckGo MCP Server_search

Search DuckDuckGo and return formatted results.

Args: query: The search query string max_results: Maximum number of results to return (default: 10) ctx: MCP context for logging

DuckDuckGo MCP Server_fetch_content

Fetch and parse content from a webpage URL.

Args: url: The webpage URL to fetch content from ctx: MCP context for logging

Oura MCP Server_get_today_resilience_data
Get resilience data for today. Returns: Dictionary containing resilience data for today
Oura MCP Server_get_sleep_data
Get sleep data for a specific date range. Args: start_date: Start date in ISO format (YYYY-MM-DD) end_date: End date in ISO format (YYYY-MM-DD) Returns: Dictionary containing sleep data
Oura MCP Server_get_readiness_data
Get readiness data for a specific date range. Args: start_date: Start date in ISO format (YYYY-MM-DD) end_date: End date in ISO format (YYYY-MM-DD) Returns: Dictionary containing readiness data
Oura MCP Server_get_resilience_data
Get resilience data for a specific date range. Args: start_date: Start date in ISO format (YYYY-MM-DD) end_date: End date in ISO format (YYYY-MM-DD) Returns: Dictionary containing resilience data
Oura MCP Server_get_today_sleep_data
Get sleep data for today. Returns: Dictionary containing sleep data for today
Oura MCP Server_get_today_readiness_data
Get readiness data for today. Returns: Dictionary containing readiness data for today
MCP Redmine_redmine_request

Make a request to the Redmine API

Args: path: API endpoint path (e.g. '/issues.json') method: HTTP method to use (default: 'get') data: Dictionary for request body (for POST/PUT) params: Dictionary for query parameters

Returns: str: YAML string containing response status code, body and error message

MCP Redmine_redmine_paths_list

Return a list of available API paths from OpenAPI spec

Retrieves all endpoint paths defined in the Redmine OpenAPI specification. Remember that you can use the redmine_paths_info tool to get the full specfication for a path.

Returns: str: YAML string containing a list of path templates (e.g. '/issues.json')

MCP Redmine_redmine_paths_info

Get full path information for given path templates

Args: path_templates: List of path templates (e.g. ['/issues.json', '/projects.json'])

Returns: str: YAML string containing API specifications for the requested paths

MCP Redmine_redmine_upload

Upload a file to Redmine and get a token for attachment

Args: file_path: Fully qualified path to the file to upload description: Optional description for the file

Returns: str: YAML string containing response status code, body and error message The body contains the attachment token

MCP Redmine_redmine_download

Download an attachment from Redmine and save it to a local file

Args: attachment_id: The ID of the attachment to download save_path: Fully qualified path where the file should be saved to filename: Optional filename to use for the attachment. If not provided, will be determined from attachment data or URL

Returns: str: YAML string containing download status, file path, and any error messages

MATLAB MCP Server_execute_matlab_code

Execute MATLAB code and return the results

MATLAB MCP Server_generate_matlab_code

Generate MATLAB code from a natural language description

MySQL MCP Server_query

SQL

MySQL MCP Server_test_execute

SQL

MySQL MCP Server_list_tables-
MySQL MCP Server_describe_table-
File Finder MCP Server_search_files

Search for files containing a specified fragment in their names

Linear MCP Server_create_issue

Create a new issue in Linear

Linear MCP Server_list_issues

List issues with optional filters

Linear MCP Server_update_issue

Update an existing issue

Linear MCP Server_list_teams

List all teams in the workspace

Linear MCP Server_list_projects

List all projects

Linear MCP Server_search_issues

Search for issues using a text query

Linear MCP Server_get_issue

Get detailed information about a specific issue

Frontend Review MCP_reviewEdit

Perform a visual review of a UI edit request. The 'before screenshot' is a screenshot of the page before the edit, and the 'after screenshot' is the screenshot of the page after the edit. You will recieve either a yes or no response, indicating whether the edit visually satisfies the edit request. If no, it will provide a detailed explanation of why the edit does not satisfy the request so you can continue to work on it.

MCP 3D Printer Server_scale_stl

Scale an STL model uniformly or along specific axes

MCP 3D Printer Server_rotate_stl

Rotate an STL model around specific axes

MCP 3D Printer Server_translate_stl

Move an STL model along specific axes

MCP 3D Printer Server_modify_stl_section

Apply a specific transformation to a selected section of an STL file

MCP 3D Printer Server_generate_stl_visualization

Generate an SVG visualization of an STL file from multiple angles

MCP 3D Printer Server_get_printer_status

Get the current status of the 3D printer

MCP 3D Printer Server_extend_stl_base

Extend the base of an STL file by a specified amount

MCP 3D Printer Server_slice_stl

Slice an STL file to generate G-code

MCP 3D Printer Server_confirm_temperatures

Confirm temperature settings in a G-code file

MCP 3D Printer Server_process_and_print_stl

Process an STL file (extend base), slice it, confirm temperatures, and start printing

MCP 3D Printer Server_get_stl_info

Get detailed information about an STL file

HeFeng Weather MCP Server_get-weather-
https://github.com/Streen9/react-mcp_read-file

Read the contents of a file

https://github.com/Streen9/react-mcp_create-react-app

Create a new React application

https://github.com/Streen9/react-mcp_run-react-app

Run a React application in development mode

https://github.com/Streen9/react-mcp_run-command

Run a terminal command

https://github.com/Streen9/react-mcp_get-process-output

Get the output from a running or completed process

https://github.com/Streen9/react-mcp_stop-process

Stop a running process

https://github.com/Streen9/react-mcp_list-processes

List all running processes

https://github.com/Streen9/react-mcp_edit-file

Create or edit a file

https://github.com/Streen9/react-mcp_install-package

Install a npm package in a project

Room MCP_create-room-as-host

create a room, and be the host. The user should provide clear direction for the objective of the room. Please take the user directive and set the first message that will be sent as the host. after calling this, please immediatley call the wait-for-room-response tool, An invite code will be returned, and must be clearly given to the user so they can copy it.

Room MCP_join-with-invite

join a room with an invite code

Room MCP_wait-for-room-response

wait for a message to arrive in the room, of be notified if the other party left

Room MCP_send-message

send a message to a room. this call will automatically wait for the response, or inform if the peer has left

Room MCP_exit-room

exit a room and clean up resources

Siri Shortcuts MCP Server_list_shortcuts

List all available Siri shortcuts

Siri Shortcuts MCP Server_open_shortcut

Open a shortcut in the Shortcuts app

Siri Shortcuts MCP Server_run_shortcut

Run a shortcut with optional input and output parameters

aws-athena-mcp_run_query

Execute a SQL query using AWS Athena. Returns full results if query completes before timeout, otherwise returns queryExecutionId.

aws-athena-mcp_get_result

Get results for a completed query. Returns error if query is still running.

aws-athena-mcp_get_status

Get the current status of a query execution

Meilisearch MCP Server_list-indexes

List all indexes in the Meilisearch instance

Meilisearch MCP Server_get-index

Get information about a specific Meilisearch index

Meilisearch MCP Server_create-index

Create a new Meilisearch index

Meilisearch MCP Server_update-index

Update a Meilisearch index (currently only supports updating the primary key)

Meilisearch MCP Server_delete-index

Delete a Meilisearch index

Meilisearch MCP Server_swap-indexes

Swap two or more indexes in Meilisearch

Meilisearch MCP Server_get-documents

Get documents from a Meilisearch index

Meilisearch MCP Server_get-document

Get a document by its ID from a Meilisearch index

Meilisearch MCP Server_add-documents

Add documents to a Meilisearch index

Meilisearch MCP Server_update-documents

Update documents in a Meilisearch index

Meilisearch MCP Server_delete-documents

Delete multiple documents by their IDs from a Meilisearch index

Meilisearch MCP Server_delete-document

Delete a document by its ID from a Meilisearch index

Meilisearch MCP Server_delete-all-documents

Delete all documents in a Meilisearch index

Meilisearch MCP Server_search

Search for documents in a Meilisearch index

Meilisearch MCP Server_multi-search

Perform multiple searches in one request

Meilisearch MCP Server_facet-search

Search for facet values matching specific criteria

Meilisearch MCP Server_get-settings

Get all settings for a Meilisearch index

Meilisearch MCP Server_update-settings

Update settings for a Meilisearch index

Meilisearch MCP Server_reset-settings

Reset all settings for a Meilisearch index to their default values

Meilisearch MCP Server_get-searchable-attributes

Get the searchable attributes setting

Meilisearch MCP Server_get-displayed-attributes

Get the displayed attributes setting

Meilisearch MCP Server_get-filterable-attributes

Get the filterable attributes setting

Meilisearch MCP Server_get-sortable-attributes

Get the sortable attributes setting

Meilisearch MCP Server_get-ranking-rules

Get the ranking rules setting

Meilisearch MCP Server_get-stop-words

Get the stop words setting

Meilisearch MCP Server_get-synonyms

Get the synonyms setting

Meilisearch MCP Server_get-distinct-attribute

Get the distinct attribute setting

Meilisearch MCP Server_get-typo-tolerance

Get the typo tolerance setting

Meilisearch MCP Server_get-faceting

Get the faceting setting

Meilisearch MCP Server_get-pagination

Get the pagination setting

Meilisearch MCP Server_update-searchable-attributes

Update the searchable attributes setting

Meilisearch MCP Server_update-displayed-attributes

Update the displayed attributes setting

Meilisearch MCP Server_update-filterable-attributes

Update the filterable attributes setting

Meilisearch MCP Server_update-sortable-attributes

Update the sortable attributes setting

Meilisearch MCP Server_update-ranking-rules

Update the ranking rules setting

Meilisearch MCP Server_update-stop-words

Update the stop words setting

Meilisearch MCP Server_update-synonyms

Update the synonyms setting

Meilisearch MCP Server_update-distinct-attribute

Update the distinct attribute setting

Meilisearch MCP Server_update-typo-tolerance

Update the typo tolerance setting

Meilisearch MCP Server_update-faceting

Update the faceting setting

Meilisearch MCP Server_update-pagination

Update the pagination setting

Meilisearch MCP Server_reset-searchable-attributes

Reset the searchable attributes setting to its default value

Meilisearch MCP Server_reset-displayed-attributes

Reset the displayed attributes setting to its default value

Meilisearch MCP Server_reset-filterable-attributes

Reset the filterable attributes setting to its default value

Meilisearch MCP Server_reset-sortable-attributes

Reset the sortable attributes setting to its default value

Meilisearch MCP Server_reset-distinct-attribute

Reset the distinct attribute setting to its default value

Meilisearch MCP Server_reset-typo-tolerance

Reset the typo tolerance setting to its default value

Meilisearch MCP Server_reset-faceting

Reset the faceting setting to its default value

Meilisearch MCP Server_reset-ranking-rules

Reset the ranking rules setting to its default value

Meilisearch MCP Server_reset-stop-words

Reset the stop words setting to its default value

Meilisearch MCP Server_reset-synonyms

Reset the synonyms setting to its default value

Meilisearch MCP Server_reset-pagination

Reset the pagination setting to its default value

Meilisearch MCP Server_enable-vector-search

Enable the vector search experimental feature in Meilisearch

Meilisearch MCP Server_get-experimental-features

Get the status of experimental features in Meilisearch

Meilisearch MCP Server_update-embedders

Configure embedders for vector search

Meilisearch MCP Server_get-embedders

Get the embedders configuration for an index

Meilisearch MCP Server_reset-embedders

Reset the embedders configuration for an index

Meilisearch MCP Server_vector-search

Perform a vector search in a Meilisearch index

Meilisearch MCP Server_health

Check if the Meilisearch server is healthy

Meilisearch MCP Server_version

Get the version information of the Meilisearch server

Meilisearch MCP Server_info

Get the system information of the Meilisearch server

Meilisearch MCP Server_stats

Get statistics about all indexes or a specific index

Meilisearch MCP Server_get-tasks

Get information about tasks with optional filtering

Meilisearch MCP Server_delete-tasks

Delete tasks based on provided filters

Meilisearch MCP Server_list-tasks

List tasks with optional filtering

Meilisearch MCP Server_get-task

Get information about a specific task

Meilisearch MCP Server_cancel-tasks

Cancel tasks based on provided filters

Meilisearch MCP Server_wait-for-task

Wait for a specific task to complete

MCP2Lambda_list_lambda_functions

Tool that lists all AWS Lambda functions that you can call as tools. Use this list to understand what these functions are and what they do. This functions can help you in many different ways.

MCP2Lambda_invoke_lambda_function

Tool that invokes an AWS Lambda function with a JSON payload. Before using this tool, list the functions available to you.

Email Sending MCP_send-email

Send an email using Resend

mitmproxy-mcp MCP Server_list_flows

Retrieves detailed HTTP request/response data including headers, content (or structure preview for large JSON), and metadata from specified flows

mitmproxy-mcp MCP Server_get_flow_details

Lists HTTP requests/responses from a mitmproxy capture session, showing method, URL, and status codes

mitmproxy-mcp MCP Server_extract_json_fields

Extract specific fields from JSON content in a flow using JSONPath expressions

mitmproxy-mcp MCP Server_analyze_protection

Analyze flow for bot protection mechanisms and extract challenge details

Crypto_MCP_aes_encrypt

encrypt text with aes

Crypto_MCP_aes_decrypt

decrypt text with aes

Crypto_MCP_md5

Calculate MD5 hash of a string

Crypto_MCP_sha1

Calculate SHA-1 hash of a string

Crypto_MCP_sha256

Calculate SHA-256 hash of a string

Crypto_MCP_sha384

Calculate SHA-384 hash of a string

Crypto_MCP_sha512

Calculate SHA-512 hash of a string

Crypto_MCP_sha224

Calculate SHA-224 hash of a string

Crypto_MCP_des_encrypt

encrypt text with des

Crypto_MCP_des_decrypt

decrypt text with des

Figma MCP Server_analyze_figma_file

Analyze a Figma file structure to understand its nodes and hierarchy

Firebase MCP Server_firestore_add_document

Add a document to a Firestore collection

Firebase MCP Server_firestore_list_collections

List collections in Firestore. If documentPath is provided, returns subcollections under that document; otherwise returns root collections.

Firebase MCP Server_firestore_list_documents

List documents from a Firestore collection with optional filtering

Firebase MCP Server_firestore_get_document

Get a document from a Firestore collection

Firebase MCP Server_firestore_update_document

Update a document in a Firestore collection

Firebase MCP Server_firestore_delete_document

Delete a document from a Firestore collection

Firebase MCP Server_auth_get_user

Get a user by ID or email from Firebase Authentication

Firebase MCP Server_storage_list_files

List files in a given path in Firebase Storage

Firebase MCP Server_storage_get_file_info

Get file information including metadata and download URL

MCP Server Template for Cursor IDE_mcp_fetch

Fetches a website and returns its content

MCP Server Template for Cursor IDE_mood

Ask the server about its mood - it's always happy!

MCP Server Template for Cursor IDE_generate_image

Generate an image using DALL-E 3

MCP Server Template for Cursor IDE_figma_design

Get Figma design data including structure and images

mcp-data-extractor_extract_data

Extract data content (e.g. i18n translations) from source code to a JSON file. IMPORTANT: When encountering files with data such as i18n content embedded in code, use this tool directly instead of reading the file content first. This tool will programmatically extract all translations into a structured JSON file, preserving nested objects, arrays, template variables, and formatting. This helps keep translations as configuration and prevents filling up the AI context window with translation content. By default, the source file will be replaced with "MIGRATED TO <target absolute path>" and a warning message after successful extraction, making it easy to track where the data was moved to. This behaviour can be disabled by setting the DISABLE_SOURCE_REPLACEMENT environment variable to 'true'. The warning message can be customized by setting the WARNING_MESSAGE environment variable.

mcp-data-extractor_extract_svg

Extract SVG components from React/TypeScript/JavaScript files into individual .svg files. This tool will preserve the SVG structure and attributes while removing React-specific code. By default, the source file will be replaced with "MIGRATED TO <target absolute path>" and a warning message after successful extraction, making it easy to track where the SVGs were moved to. This behaviour can be disabled by setting the DISABLE_SOURCE_REPLACEMENT environment variable to 'true'. The warning message can be customized by setting the WARNING_MESSAGE environment variable.

airflow-mcp-server_get_version

get_version

airflow-mcp-server_get_connections

get_connections

airflow-mcp-server_post_connection

post_connection

airflow-mcp-server_get_connection

get_connection

airflow-mcp-server_patch_connection

patch_connection

airflow-mcp-server_delete_connection

delete_connection

airflow-mcp-server_test_connection

test_connection

airflow-mcp-server_get_dags

get_dags

airflow-mcp-server_delete_dag

delete_dag

airflow-mcp-server_patch_dags

patch_dags

airflow-mcp-server_get_dag

get_dag

airflow-mcp-server_patch_dag

patch_dag

airflow-mcp-server_post_clear_task_instances

post_clear_task_instances

airflow-mcp-server_set_task_instance_note

set_task_instance_note

airflow-mcp-server_set_mapped_task_instance_note

set_mapped_task_instance_note

airflow-mcp-server_get_task_instance_dependencies

get_task_instance_dependencies

airflow-mcp-server_get_mapped_task_instance_dependencies

get_mapped_task_instance_dependencies

airflow-mcp-server_post_set_task_instances_state

post_set_task_instances_state

airflow-mcp-server_get_dag_runs

get_dag_runs

airflow-mcp-server_post_dag_run

post_dag_run

airflow-mcp-server_get_dag_runs_batch

get_dag_runs_batch

airflow-mcp-server_get_dag_run

get_dag_run

airflow-mcp-server_delete_dag_run

delete_dag_run

airflow-mcp-server_update_dag_run_state

update_dag_run_state

airflow-mcp-server_clear_dag_run

clear_dag_run

airflow-mcp-server_get_upstream_dataset_events

get_upstream_dataset_events

airflow-mcp-server_set_dag_run_note

set_dag_run_note

airflow-mcp-server_get_dag_dataset_queued_event

get_dag_dataset_queued_event

airflow-mcp-server_delete_dag_dataset_queued_event

delete_dag_dataset_queued_event

airflow-mcp-server_get_dag_dataset_queued_events

get_dag_dataset_queued_events

airflow-mcp-server_delete_dag_dataset_queued_events

delete_dag_dataset_queued_events

airflow-mcp-server_reparse_dag_file

reparse_dag_file

airflow-mcp-server_get_dataset_queued_events

get_dataset_queued_events

airflow-mcp-server_delete_dataset_queued_events

delete_dataset_queued_events

airflow-mcp-server_get_event_logs

get_event_logs

airflow-mcp-server_get_event_log

get_event_log

airflow-mcp-server_get_import_errors

get_import_errors

airflow-mcp-server_get_import_error

get_import_error

airflow-mcp-server_get_pools

get_pools

airflow-mcp-server_post_pool

post_pool

airflow-mcp-server_get_pool

get_pool

airflow-mcp-server_patch_pool

patch_pool

airflow-mcp-server_delete_pool

delete_pool

airflow-mcp-server_get_providers

get_providers

airflow-mcp-server_get_task_instances

get_task_instances

airflow-mcp-server_get_task_instance

get_task_instance

airflow-mcp-server_patch_task_instance

patch_task_instance

airflow-mcp-server_get_mapped_task_instance

get_mapped_task_instance

airflow-mcp-server_patch_mapped_task_instance

patch_mapped_task_instance

airflow-mcp-server_get_mapped_task_instances

get_mapped_task_instances

airflow-mcp-server_get_task_instances_batch

get_task_instances_batch

airflow-mcp-server_get_task_instance_try_details

get_task_instance_try_details

airflow-mcp-server_get_task_instance_tries

get_task_instance_tries

airflow-mcp-server_get_mapped_task_instance_tries

get_mapped_task_instance_tries

airflow-mcp-server_get_mapped_task_instance_try_details

get_mapped_task_instance_try_details

airflow-mcp-server_get_variables

get_variables

airflow-mcp-server_post_variables

post_variables

airflow-mcp-server_get_variable

get_variable

airflow-mcp-server_patch_variable

patch_variable

airflow-mcp-server_delete_variable

delete_variable

airflow-mcp-server_get_xcom_entries

get_xcom_entries

airflow-mcp-server_get_xcom_entry

get_xcom_entry

airflow-mcp-server_get_extra_links

get_extra_links

airflow-mcp-server_get_log

get_log

airflow-mcp-server_get_dag_details

get_dag_details

airflow-mcp-server_get_tasks

get_tasks

airflow-mcp-server_get_task

get_task

airflow-mcp-server_get_dag_stats

get_dag_stats

airflow-mcp-server_get_dag_source

get_dag_source

airflow-mcp-server_get_dag_warnings

get_dag_warnings

airflow-mcp-server_get_datasets

get_datasets

airflow-mcp-server_get_dataset

get_dataset

airflow-mcp-server_get_dataset_events

get_dataset_events

airflow-mcp-server_create_dataset_event

create_dataset_event

airflow-mcp-server_get_config

get_config

airflow-mcp-server_get_value

get_value

airflow-mcp-server_get_health

get_health

airflow-mcp-server_get_plugins

get_plugins

airflow-mcp-server_get_roles

get_roles

airflow-mcp-server_post_role

post_role

airflow-mcp-server_get_role

get_role

airflow-mcp-server_patch_role

patch_role

airflow-mcp-server_delete_role

delete_role

airflow-mcp-server_get_permissions

get_permissions

airflow-mcp-server_get_users

get_users

airflow-mcp-server_post_user

post_user

airflow-mcp-server_get_user

get_user

airflow-mcp-server_patch_user

patch_user

airflow-mcp-server_delete_user

delete_user

MCP Tavily_search

Perform a basic web search. Returns search results including title, content and URL.

MCP Tavily_searchContext

Perform a context-aware web search. Optimized for retrieving contextually relevant results.

MCP Tavily_searchQNA

Perform a question-answering search. Best suited for direct questions that need specific answers.

MCP Tavily_extract

Extract and process content from a list of URLs. Can handle up to 20 URLs at once.

Terraform Registry MCP Server_providerLookup

Lookup a Terraform provider by name and optionally version.

Terraform Registry MCP Server_resourceUsage

Get an example usage of a Terraform resource and related resources.

Terraform Registry MCP Server_moduleRecommendations

Search for and recommend Terraform modules for a given query.

Terraform Registry MCP Server_dataSourceLookup

List all available data sources for a provider and their basic details.

Terraform Registry MCP Server_resourceArgumentDetails

Fetches details about a specific resource type's arguments, including name, type, description, and requirements.

Terraform Registry MCP Server_moduleDetails

Retrieves detailed metadata for a Terraform module including versions, inputs, outputs, and dependencies.

Quickchart-MCP-Server_generate_chart

Generate a chart using QuickChart

Quickchart-MCP-Server_download_chart

Download a chart image to a local file

Harvest Natural Language Time Entry MCP Server_list_tasks

List available tasks for a project

Harvest Natural Language Time Entry MCP Server_log_time

Log time entry using natural language

Harvest Natural Language Time Entry MCP Server_list_projects

List available Harvest projects

Harvest Natural Language Time Entry MCP Server_list_entries

List recent time entries

Harvest Natural Language Time Entry MCP Server_get_time_report

Get time reports using natural language

Redmine MCP Server for Cline_create_issue

Create a new Redmine issue

Dart MCP Server_create_folder

Create a new folder in a space

Dart MCP Server_get_dartboards

Get available dartboards

Dart MCP Server_get_folders

Get available folders

Dart MCP Server_get_default_status

Get the default status DUIDs

Dart MCP Server_get_default_space

Get the default space DUID

Dart MCP Server_create_task

Create a new Dart task

Dart MCP Server_update_task

Update an existing task

Dart MCP Server_create_doc

Create a new document or report

Dart MCP Server_create_space

Create a new space

Dart MCP Server_delete_space

Delete a space and all its contents

Crypto Price & Market Analysis MCP Server_get-crypto-price

Get current price and 24h stats for a cryptocurrency

Crypto Price & Market Analysis MCP Server_get-market-analysis

Get detailed market analysis including top exchanges and volume distribution

Crypto Price & Market Analysis MCP Server_get-historical-analysis

Get historical price analysis with customizable timeframe

SendGrid MCP Server_list_templates

List all email templates in your SendGrid account

SendGrid MCP Server_create_contact_list

Create a new contact list in SendGrid

SendGrid MCP Server_validate_email

Validate an email address using SendGrid

SendGrid MCP Server_get_stats

Get SendGrid email statistics

SendGrid MCP Server_delete_contacts

Delete contacts from your SendGrid account

SendGrid MCP Server_list_contacts

List all contacts in your SendGrid account

SendGrid MCP Server_send_email

Send an email using SendGrid

SendGrid MCP Server_add_contact

Add a contact to your SendGrid marketing contacts

SendGrid MCP Server_add_contacts_to_list

Add contacts to an existing SendGrid list

SendGrid MCP Server_create_template

Create a new email template in SendGrid

SendGrid MCP Server_get_template

Retrieve a SendGrid template by ID

SendGrid MCP Server_delete_template

Delete a dynamic template from SendGrid

SendGrid MCP Server_delete_list

Delete a contact list from SendGrid

SendGrid MCP Server_list_contact_lists

List all contact lists in your SendGrid account

SendGrid MCP Server_get_contacts_by_list

Get all contacts in a SendGrid list

SendGrid MCP Server_list_verified_senders

List all verified sender identities in your SendGrid account

SendGrid MCP Server_list_suppression_groups

List all unsubscribe groups in your SendGrid account

SendGrid MCP Server_send_to_list

Send an email to a contact list using SendGrid Single Sends

SendGrid MCP Server_get_single_send

Get details of a specific single send

SendGrid MCP Server_list_single_sends

List all single sends in your SendGrid account

SendGrid MCP Server_remove_contacts_from_list

Remove contacts from a SendGrid list without deleting them

Azure MCP Server_run-azure-code

Run Azure code

Azure MCP Server_list-tenants

List all available Azure tenants

Azure MCP Server_select-tenant

Select Azure tenant and subscription

PyGithub MCP Server_create_issue

Create a new issue in a GitHub repository.

Args: params_dict: Parameters for creating an issue including: - owner: Repository owner (user or organization) - repo: Repository name - title: Issue title - body: Issue description (optional) - assignees: List of usernames to assign - labels: List of labels to add - milestone: Milestone number (optional) Returns: Created issue details from GitHub API
PyGithub MCP Server_list_issues

List issues from a GitHub repository.

Args: params: Parameters for listing issues including: - owner: Repository owner (user or organization) - repo: Repository name - state: Issue state (open, closed, all) - labels: Filter by labels - sort: Sort field (created, updated, comments) - direction: Sort direction (asc, desc) - since: Filter by date - page: Page number for pagination - per_page: Number of results per page (max 100) Returns: List of issues from GitHub API
PyGithub MCP Server_get_issue

Get details about a specific issue.

Args: params: Parameters for getting an issue including: - owner: Repository owner (user or organization) - repo: Repository name - issue_number: Issue number to retrieve Returns: Issue details from GitHub API
PyGithub MCP Server_update_issue

Update an existing issue.

Args: params: Parameters for updating an issue including: - owner: Repository owner (user or organization) - repo: Repository name - issue_number: Issue number to update - title: New title (optional) - body: New description (optional) - state: New state (optional) - labels: New labels (optional) - assignees: New assignees (optional) - milestone: New milestone number (optional) Returns: Updated issue details from GitHub API
PyGithub MCP Server_add_issue_comment

Add a comment to an issue.

Args: params: Parameters for adding a comment including: - owner: Repository owner (user or organization) - repo: Repository name - issue_number: Issue number to comment on - body: Comment text Returns: Created comment details from GitHub API
PyGithub MCP Server_list_issue_comments

List comments on an issue.

Args: params: Parameters for listing comments including: - owner: Repository owner (user or organization) - repo: Repository name - issue_number: Issue number - since: Filter by date (optional) - page: Page number (optional) - per_page: Results per page (optional) Returns: List of comments from GitHub API
PyGithub MCP Server_update_issue_comment

Update an issue comment.

Args: params: Parameters for updating a comment including: - owner: Repository owner (user or organization) - repo: Repository name - issue_number: Issue number containing the comment - comment_id: Comment ID to update - body: New comment text Returns: Updated comment details from GitHub API
PyGithub MCP Server_push_files

Push multiple files to a GitHub repository in a single commit.

Args: params: Dictionary with file parameters - owner: Repository owner (username or organization) - repo: Repository name - branch: Branch to push to - files: List of files to push, each with path and content - message: Commit message Returns: MCP response with file push result
PyGithub MCP Server_delete_issue_comment

Delete an issue comment.

Args: params: Parameters for deleting a comment including: - owner: Repository owner (user or organization) - repo: Repository name - issue_number: Issue number containing the comment - comment_id: Comment ID to delete Returns: Empty response on success
PyGithub MCP Server_add_issue_labels

Add labels to an issue.

Args: params: Parameters for adding labels including: - owner: Repository owner (user or organization) - repo: Repository name - issue_number: Issue number - labels: Labels to add Returns: Updated list of labels from GitHub API
PyGithub MCP Server_remove_issue_label

Remove a label from an issue.

Args: params: Parameters for removing a label including: - owner: Repository owner (user or organization) - repo: Repository name - issue_number: Issue number - label: Label to remove Returns: Empty response on success or error if label doesn't exist
PyGithub MCP Server_get_repository

Get details about a GitHub repository.

Args: params: Dictionary with repository parameters - owner: Repository owner (username or organization) - repo: Repository name Returns: MCP response with repository details
PyGithub MCP Server_create_repository

Create a new GitHub repository.

Args: params: Dictionary with repository creation parameters - name: Repository name - description: Repository description (optional) - private: Whether the repository should be private (optional) - auto_init: Initialize repository with README (optional) Returns: MCP response with created repository details
PyGithub MCP Server_fork_repository

Fork an existing GitHub repository.

Args: params: Dictionary with fork parameters - owner: Repository owner (username or organization) - repo: Repository name - organization: Organization to fork to (optional) Returns: MCP response with forked repository details
PyGithub MCP Server_search_repositories

Search for GitHub repositories.

Args: params: Dictionary with search parameters - query: Search query - page: Page number for pagination (optional) - per_page: Results per page (optional) Returns: MCP response with matching repositories
PyGithub MCP Server_get_file_contents

Get contents of a file in a GitHub repository.

Args: params: Dictionary with file parameters - owner: Repository owner (username or organization) - repo: Repository name - path: Path to file/directory - branch: Branch to get contents from (optional) Returns: MCP response with file content data
PyGithub MCP Server_create_or_update_file

Create or update a file in a GitHub repository.

Args: params: Dictionary with file parameters - owner: Repository owner (username or organization) - repo: Repository name - path: Path where to create/update the file - content: Content of the file - message: Commit message - branch: Branch to create/update the file in - sha: SHA of file being replaced (for updates, optional) Returns: MCP response with file creation/update result
PyGithub MCP Server_create_branch

Create a new branch in a GitHub repository.

Args: params: Dictionary with branch parameters - owner: Repository owner (username or organization) - repo: Repository name - branch: Name for new branch - from_branch: Source branch (optional, defaults to repo default) Returns: MCP response with branch creation result
PyGithub MCP Server_list_commits

List commits in a GitHub repository.

Args: params: Dictionary with commit parameters - owner: Repository owner (username or organization) - repo: Repository name - page: Page number (optional) - per_page: Results per page (optional) - sha: Branch name or commit SHA (optional) Returns: MCP response with list of commits
mcp-otc_check-balance

Check the ETH balance of an Ethereum address

mcp-otc_get-transactions

Get recent transactions for an Ethereum address

mcp-otc_get-token-transfers

Get ERC20 token transfers for an Ethereum address

mcp-otc_get-contract-abi

Get the ABI for a smart contract

mcp-otc_get-gas-prices

Get current gas prices in Gwei

mcp-otc_get-ens-name

Get the ENS name for an Ethereum address

Super Secret MCP Server_getSecretPassphrase

Whats the password?

SingleStore MCP Server_query_table

Execute a query on a table

SingleStore MCP Server_generate_er_diagram

Generate a Mermaid ER diagram of the database schema

SingleStore MCP Server_list_tables

List all tables in the database

SingleStore MCP Server_describe_table

Get detailed information about a table

SingleStore MCP Server_run_read_query

Execute a read-only (SELECT) query on the database

SingleStore MCP Server_create_table

Create a new table in the database with specified columns and constraints

SingleStore MCP Server_generate_synthetic_data

Generate and insert synthetic data into an existing table

SingleStore MCP Server_optimize_sql

Analyze a SQL query using PROFILE and provide optimization recommendations

Jenkins MCP_list_jobs

List all Jenkins jobs

Jenkins MCP_trigger_build

Trigger a Jenkins build

Args: job_name: Name of the job to build parameters: Optional build parameters as a dictionary (e.g. {"param1": "value1"}) Returns: Dictionary containing build information including the build number
Jenkins MCP_get_build_status

Get build status

Args: job_name: Name of the job build_number: Build number to check, defaults to latest Returns: Build information dictionary
Netlify MCP Server_deploy-site

Deploy a site to Netlify

Netlify MCP Server_list-sites

List all Netlify sites

Netlify MCP Server_set-env-vars

Set environment variables for a site

Netlify MCP Server_get-deploy-status

Get deployment status for a site

Netlify MCP Server_add-dns-record

Add a DNS record to a site

Netlify MCP Server_deploy-function

Deploy a serverless function

Netlify MCP Server_manage-form

Manage form submissions

Netlify MCP Server_manage-plugin

Manage site plugins

Netlify MCP Server_manage-hook

Manage webhook notifications

PayPal MCP_create_payment_token

Create a payment token

PayPal MCP_create_payment

Create a payment

PayPal MCP_create_payout

Create a batch payout

PayPal MCP_create_referenced_payout

Create a referenced payout

PayPal MCP_create_order

Create a new order in PayPal

PayPal MCP_create_partner_referral

Create a partner referral

PayPal MCP_create_web_profile

Create a web experience profile

PayPal MCP_create_product

Create a new product in PayPal

PayPal MCP_list_products

List all products

PayPal MCP_get_dispute

Get details of a dispute

PayPal MCP_get_userinfo

Get user info from identity token

PayPal MCP_create_invoice

Create a new invoice

WolframAlpha LLM MCP Server_ask_llm

Ask WolframAlpha a query and get LLM-optimized structured response with multiple formats

WolframAlpha LLM MCP Server_get_simple_answer

Get a simplified, LLM-friendly answer focusing on the most relevant information

WolframAlpha LLM MCP Server_validate_key

Validate the WolframAlpha LLM API key

serper-search-scrape-mcp-server_google_search

Tool to perform web searches via Serper API and retrieve rich results. It is able to retrieve organic search results, people also ask, related searches, and knowledge graph.

serper-search-scrape-mcp-server_scrape

Tool to scrape a webpage and retrieve the text and, optionally, the markdown content. It will retrieve also the JSON-LD metadata and the head metadata.

MCP Security Audit Server_audit_nodejs_dependencies

Audit specific dependencies for vulnerabilities

OpenAI MCP Server_ask-openai

Ask my assistant models a direct question

MCP Flux Studio_generate

Generate an image from a text prompt

MCP Flux Studio_img2img

Generate an image using another image as reference

MCP Flux Studio_inpaint

Inpaint an image using a mask

MCP Flux Studio_control

Generate an image using structural control

MCP OpenFEC Server_get_candidate

Get detailed information about a candidate

MCP OpenFEC Server_get_candidate_financials

Get financial data for a candidate

MCP OpenFEC Server_search_candidates

Search for candidates by name or other criteria

MCP OpenFEC Server_get_committee

Get detailed information about a committee

MCP OpenFEC Server_get_candidate_contributions

Get individual contributions for a candidate

MCP OpenFEC Server_get_filings

Retrieve official FEC filings with filters

MCP OpenFEC Server_get_independent_expenditures

Get independent expenditures supporting or opposing candidates

MCP OpenFEC Server_get_electioneering

Get electioneering communications

MCP OpenFEC Server_get_party_coordinated_expenditures

Get party coordinated expenditures

MCP OpenFEC Server_get_communication_costs

Get corporate/union communication costs

MCP OpenFEC Server_get_audit_cases

Get FEC audit cases and findings

MCP OpenFEC Server_get_bulk_downloads

Get links to bulk data downloads

BigGo MCP Server_product_search

Product Search

BigGo MCP Server_price_history_graph

Link That Visualizes Product Price History

BigGo MCP Server_price_history_with_history_id

Product Price History With History ID

BigGo MCP Server_price_history_with_url

Product Price History With URL

BigGo MCP Server_spec_indexes

Elasticsearch Indexes for Product Specification.

It is REQUIRED to use this tool first before running any specification search.
BigGo MCP Server_spec_mapping

Elasticsearch Mapping For Product Specification.

Use this tool after you have the index, and need to know the mapping in order to query the index. Available indexes can be obtained by using the 'spec_indexes' tool.
BigGo MCP Server_get_current_region
Get the current region setting.
BigGo MCP Server_spec_search

Product Specification Search.

Index mapping must be aquired before using this tool. Use 'spec_mapping' tool to get the mapping of the index.
MCP Server for OpenMetadata_list_tables

List tables from OpenMetadata

MCP Server for OpenMetadata_get_table

Get details of a specific table by ID

MCP Server for OpenMetadata_get_table_by_name

Get details of a specific table by fully qualified name

MCP Server for OpenMetadata_create_table

Create a new table

MCP Server for OpenMetadata_update_table

Update an existing table

MCP Server for OpenMetadata_delete_table

Delete a table

Apple MCP Server_contacts

Search and retrieve contacts from Apple Contacts app

Apple MCP Server_notes

Search and retrieve notes from Apple Notes app

Apple MCP Server_messages

Interact with Apple Messages app - send, read, schedule messages and check unread messages

Apple MCP Server_mail

Interact with Apple Mail app - read unread emails, search emails, and send emails

Apple MCP Server_reminders

Search, create, and open reminders in Apple Reminders app

Apple MCP Server_webSearch

Search the web using DuckDuckGo and retrieve content from search results

Florence-2 MCP Server_ocr

Process an image file or URL using OCR to extract text.

Florence-2 MCP Server_caption

Processes an image file and generates captions for the image.

mcp-timeplus_list_databases-
mcp-timeplus_list_tables-
mcp-timeplus_run_sql-
mcp-timeplus_list_kafka_topics-
mcp-timeplus_explore_kafka_topic-
mcp-timeplus_create_kafka_stream-
Webflow MCP Server_get_site

Retrieve detailed information about a specific Webflow site by ID, including workspace, creation date, display name, and publishing details

Webflow MCP Server_get_sites

Retrieve a list of all Webflow sites accessible to the authenticated user

Square MCP Server_payments

Manage payment operations using Square API

Args: operation: The operation to perform. Valid operations: Payments: - list_payments - create_payment - get_payment - update_payment - cancel_payment Refunds: - refund_payment - list_refunds - get_refund Disputes: - list_disputes - retrieve_dispute - accept_dispute - create_dispute_evidence Gift Cards: - create_gift_card - link_customer_to_gift_card - retrieve_gift_card - list_gift_cards Bank Accounts: - list_bank_accounts - get_bank_account params: Dictionary of parameters for the specific operation
Square MCP Server_terminal

Manage Square Terminal operations

Args: operation: The operation to perform. Valid operations: Checkout: - create_terminal_checkout - search_terminal_checkouts - get_terminal_checkout - cancel_terminal_checkout Devices: - create_terminal_device - get_terminal_device - search_terminal_devices Refunds: - create_terminal_refund - search_terminal_refunds - get_terminal_refund - cancel_terminal_refund params: Dictionary of parameters for the specific operation
Square MCP Server_orders

Manage orders and checkout operations

Args: operation: The operation to perform. Valid operations: Orders: - create_order - batch_retrieve_orders - calculate_order - clone_order - search_orders - pay_order - update_order Checkout: - create_checkout - create_payment_link Custom Attributes: - upsert_order_custom_attribute - list_order_custom_attribute_definitions params: Dictionary of parameters for the specific operation
Square MCP Server_catalog

Manage catalog operations

Args: operation: The operation to perform. Valid operations: - create_catalog_object - batch_delete_catalog_objects - batch_retrieve_catalog_objects - batch_upsert_catalog_objects - create_catalog_image - delete_catalog_object - retrieve_catalog_object - search_catalog_objects - update_catalog_object - update_item_modifier_lists - update_item_taxes params: Dictionary of parameters for the specific operation
Square MCP Server_inventory

Manage inventory operations

Args: operation: The operation to perform. Valid operations: - batch_change_inventory - batch_retrieve_inventory_changes - batch_retrieve_inventory_counts - retrieve_inventory_adjustment - retrieve_inventory_changes - retrieve_inventory_count - retrieve_inventory_physical_count - retrieve_inventory_transfer params: Dictionary of parameters for the specific operation
Square MCP Server_subscriptions

Manage subscription operations

Args: operation: The operation to perform. Valid operations: - create_subscription - search_subscriptions - retrieve_subscription - update_subscription - cancel_subscription - list_subscription_events - pause_subscription - resume_subscription - swap_plan params: Dictionary of parameters for the specific operation
Square MCP Server_invoices

Manage invoice operations

Args: operation: The operation to perform. Valid operations: - create_invoice - search_invoices - get_invoice - update_invoice - cancel_invoice - publish_invoice - delete_invoice params: Dictionary of parameters for the specific operation
Square MCP Server_team

Manage team operations

Args: operation: The operation to perform. Valid operations: Team Members: - create_team_member - bulk_create_team_members - update_team_member - retrieve_team_member - search_team_members Wages: - retrieve_wage_setting - update_wage_setting Labor: - create_break_type - create_shift - search_shifts - update_shift - create_workweek_config Cash Drawers: - list_cash_drawer_shifts - retrieve_cash_drawer_shift params: Dictionary of parameters for the specific operation
Square MCP Server_customers

Manage customer operations

Args: operation: The operation to perform. Valid operations: Customers: - list_customers - create_customer - delete_customer - retrieve_customer - update_customer - search_customers Groups: - create_customer_group - delete_customer_group - list_customer_groups - retrieve_customer_group - update_customer_group Segments: - list_customer_segments - retrieve_customer_segment Custom Attributes: - create_customer_custom_attribute_definition - delete_customer_custom_attribute_definition - list_customer_custom_attribute_definitions params: Dictionary of parameters for the specific operation
Square MCP Server_loyalty

Manage loyalty operations

Args: operation: The operation to perform. Valid operations: Programs: - create_loyalty_program - retrieve_loyalty_program Accounts: - create_loyalty_account - search_loyalty_accounts - retrieve_loyalty_account - accumulate_loyalty_points - adjust_loyalty_points - search_loyalty_events Promotions: - create_loyalty_promotion - cancel_loyalty_promotion params: Dictionary of parameters for the specific operation
Square MCP Server_bookings

Manage booking operations

Args: operation: The operation to perform. Valid operations: Bookings: - create_booking - search_bookings - retrieve_booking - update_booking - cancel_booking Team Member Bookings: - bulk_retrieve_team_member_bookings - retrieve_team_member_booking_profile Location Profiles: - list_location_booking_profiles - retrieve_location_booking_profile Custom Attributes: - create_booking_custom_attribute_definition - update_booking_custom_attribute_definition params: Dictionary of parameters for the specific operation
Square MCP Server_business

Manage business operations

Args: operation: The operation to perform. Valid operations: Merchants: - list_merchants - retrieve_merchant Locations: - list_locations - create_location - retrieve_location - update_location Vendors: - bulk_create_vendors - bulk_retrieve_vendors - create_vendor - search_vendors - update_vendor Sites: - list_sites params: Dictionary of parameters for the specific operation
EverArt Forge MCP Server_generate_image

Generate images using EverArt Models, optimized for web development. Supports web project paths, responsive formats, and inline preview. Available models:

  • 5000.1: Standard quality
  • 9000.1-ultra: Ultra high quality
  • 6000.5: Stable Diffusion 3.5
  • 7000: Photorealistic style
  • 8000: Vector art style (SVG format)
EverArt Forge MCP Server_list_images

List all stored images

EverArt Forge MCP Server_view_image

Open a stored image in the default image viewer

Serper Search MCP Server_serper-google-search

Perform a Google search using the SERPER API. Returns rich search results including knowledge graph, organic results, related questions, and more.

n8n MCP Server_init-n8n

Initialize connection to n8n instance. Use this tool whenever an n8n URL and API key are shared to establish the connection. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_list-workflows

List all workflows from n8n. Use after init-n8n to see available workflows. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_get-workflow

Retrieve a workflow by ID. Use after list-workflows to get detailed information about a specific workflow. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_create-workflow

Create a new workflow in n8n. Use to set up a new workflow with optional nodes and connections. IMPORTANT: 1) Arguments must be provided as compact, single-line JSON without whitespace or newlines. 2) Must provide full workflow structure including nodes and connections arrays, even if empty. The 'active' property should not be included as it is read-only.

n8n MCP Server_update-workflow

Update an existing workflow in n8n. Use after get-workflow to modify a workflow's properties, nodes, or connections. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_delete-workflow

Delete a workflow by ID. This action cannot be undone. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_activate-workflow

Activate a workflow by ID. This will enable the workflow to run. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_deactivate-workflow

Deactivate a workflow by ID. This will prevent the workflow from running. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_list-projects

List all projects from n8n. NOTE: Requires n8n Enterprise license with project management features enabled. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_create-project

Create a new project in n8n. NOTE: Requires n8n Enterprise license with project management features enabled. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_delete-project

Delete a project by ID. NOTE: Requires n8n Enterprise license with project management features enabled. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_update-project

Update a project's name. NOTE: Requires n8n Enterprise license with project management features enabled. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_list-users

Retrieve all users from your instance. Only available for the instance owner.

n8n MCP Server_create-users

Create one or more users in your instance.

n8n MCP Server_get-user

Get user by ID or email address.

n8n MCP Server_delete-user

Delete a user from your instance.

n8n MCP Server_list-variables

List all variables from n8n. NOTE: Requires n8n Enterprise license with variable management features enabled. Use after init-n8n to see available variables. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_create-variable

Create a new variable in n8n. NOTE: Requires n8n Enterprise license with variable management features enabled. Variables can be used across workflows to store and share data. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_delete-variable

Delete a variable by ID. NOTE: Requires n8n Enterprise license with variable management features enabled. Use after list-variables to get the ID of the variable to delete. This action cannot be undone. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.

n8n MCP Server_create-credential

Create a credential that can be used by nodes of the specified type. The credential type name can be found in the n8n UI when creating credentials (e.g., 'cloudflareApi', 'githubApi', 'slackOAuth2Api'). Use get-credential-schema first to see what fields are required for the credential type you want to create.

n8n MCP Server_delete-credential

Delete a credential by ID. You must be the owner of the credentials.

n8n MCP Server_get-credential-schema

Show credential data schema for a specific credential type. The credential type name can be found in the n8n UI when creating credentials (e.g., 'cloudflareApi', 'githubApi', 'slackOAuth2Api'). This will show you what fields are required for creating credentials of this type.

n8n MCP Server_list-executions

Retrieve all executions from your instance with optional filtering.

n8n MCP Server_get-execution

Retrieve a specific execution by ID.

n8n MCP Server_delete-execution

Delete a specific execution by ID.

n8n MCP Server_create-tag

Create a new tag in your instance.

n8n MCP Server_list-tags

Retrieve all tags from your instance.

n8n MCP Server_get-tag

Retrieve a specific tag by ID.

n8n MCP Server_update-tag

Update a tag's name.

n8n MCP Server_delete-tag

Delete a tag by ID.

n8n MCP Server_get-workflow-tags

Get tags associated with a workflow.

n8n MCP Server_update-workflow-tags

Update tags associated with a workflow.

n8n MCP Server_generate-audit

Generate a security audit for your n8n instance.

Software Planning Tool_start_planning

Start a new planning session with a goal

Software Planning Tool_save_plan

Save the current implementation plan

Software Planning Tool_add_todo

Add a new todo item to the current plan

Software Planning Tool_remove_todo

Remove a todo item from the current plan

Software Planning Tool_get_todos

Get all todos in the current plan

Software Planning Tool_update_todo_status

Update the completion status of a todo item

mcp-clickup_clickup_authenticate

Authenticate with ClickUp API using an API token and workspace ID

mcp-clickup_clickup_get_task_by_custom_id

Get a task by its custom ID

mcp-clickup_clickup_get_tasks

Get multiple tasks by their IDs

mcp-clickup_clickup_get_task

Get a task by its ID

MCP YNAB Server_create_transaction

Create a new transaction in YNAB.

MCP YNAB Server_get_account_balance

Get the current balance of a YNAB account (in dollars).

MCP YNAB Server_get_budgets

List all YNAB budgets in Markdown format.

MCP YNAB Server_get_accounts

List all YNAB accounts in a specific budget in Markdown format.

MCP YNAB Server_get_categories

List all transaction categories for a given YNAB budget in Markdown format.

MCP YNAB Server__find_transaction_by_id

Find a transaction by its ID and ID type.

MCP YNAB Server_get_transactions

Get recent transactions for a specific account in a specific budget.

MCP YNAB Server_get_transactions_needing_attention

List transactions that need attention based on specified filter type in a YNAB budget.

MCP YNAB Server_set_preferred_budget_id

Set the preferred YNAB budget ID.

MCP YNAB Server_cache_categories

Cache all categories for a given YNAB budget ID.

Buienradar MCP Server_get_precipitation_for

Fetches precipitation data for the next 2 hours from Buienradar.

Perplexity AI MCP Server_chat_perplexity

Maintains ongoing conversations with Perplexity AI. Creates new chats or continues existing ones with full history context.

Perplexity AI MCP Server_search

Perform a general search query to get comprehensive information on any topic

Perplexity AI MCP Server_get_documentation

Get documentation and usage examples for a specific technology, library, or API

Perplexity AI MCP Server_find_apis

Find and evaluate APIs that could be integrated into a project

Perplexity AI MCP Server_check_deprecated_code

Check if code or dependencies might be using deprecated features

Memory Bank MCP Server_memory_bank_read

Read a memory bank file for a specific project

Memory Bank MCP Server_memory_bank_write

Create a new memory bank file for a specific project

Memory Bank MCP Server_memory_bank_update

Update an existing memory bank file for a specific project

Memory Bank MCP Server_list_projects

List all projects in the memory bank

Memory Bank MCP Server_list_project_files

List all files within a specific project

nREPL MCP Server_connect

Connect to an nREPL server. Example: (connect { "localhost" 1234})

nREPL MCP Server_eval_form

Evaluate Clojure code in a specific namespace or the current one. Examples:

  • Get current namespace: (eval_form { "(str ns)"})
  • Change namespace: (eval_form { "(+ 1 2)" "my.namespace"})
  • Load a file: (eval_form { "(load-file "src/my_file.clj")"})
  • Define and call functions: (eval_form { "(defn add [a b] (+ a b))" "math"} then (eval_form { "(add 1 2)" "math"})
nREPL MCP Server_get_ns_vars

Get all public vars (functions, values) in a namespace with their metadata and current values. Example:

  • List main namespace vars: (get_ns_vars { "main"}) Returns a map where keys are var names and values contain:
  • - Metadata including string, number, path
  • - Current value of the var
Coolify MCP Server_list-resources

Retrieve a comprehensive list of all resources managed by Coolify. This includes applications, services, databases, and deployments.

Coolify MCP Server_list-applications

Fetch a list of all applications currently managed by Coolify. This provides an overview of all deployed applications.

Coolify MCP Server_get-application

Retrieve detailed information about a specific application using its UUID. This includes the application's status, configuration, and deployment details.

Coolify MCP Server_start-application

Start a specific application using its UUID. This initiates the application and makes it available for use.

Coolify MCP Server_stop-application

Stop a specific application using its UUID. This halts the application and makes it unavailable.

Coolify MCP Server_restart-application

Restart a specific application using its UUID. This stops and then starts the application, applying any configuration changes.

Coolify MCP Server_list-services

Retrieve a list of all services managed by Coolify. This includes external services and microservices.

Coolify MCP Server_list-databases

Fetch a list of all databases managed by Coolify. This provides an overview of all database instances.

Coolify MCP Server_list-deployments

Retrieve a list of all running deployments in Coolify. This includes details about the deployment status and history.

Coolify MCP Server_deploy

Deploy an application or service using a tag or UUID. This allows you to deploy new versions or updates to your applications.

Coolify MCP Server_update-application

Update the settings of a specific application, such as health check configurations. This allows you to modify the application's behavior and monitoring settings.

Supabase MCP Server_get_schemas

List all database schemas with their sizes and table counts.

Supabase MCP Server_get_table_schema

Get detailed table structure including columns, keys, and relationships.

Returns comprehensive information about a specific table's structure:

  • Column definitions (names, types, constraints)
  • Primary key information
  • Foreign key relationships
  • Indexes
  • Constraints
  • Triggers

Parameters:

  • schema_name: Name of the schema (e.g., 'public', 'auth')
  • table: Name of the table to inspect

SAFETY: This is a low-risk read operation that can be executed in SAFE mode.

Supabase MCP Server_execute_postgresql

Execute PostgreSQL statements against your Supabase database.

IMPORTANT: All SQL statements must end with a semicolon (;).

OPERATION TYPES AND REQUIREMENTS:

  1. READ Operations (SELECT, EXPLAIN, etc.):
    • Can be executed directly without special requirements
    • Example: SELECT * FROM public.users LIMIT 10;
  2. WRITE Operations (INSERT, UPDATE, DELETE):
    • Require UNSAFE mode (use live_dangerously('database', True) first)
    • Example: INSERT INTO public.users (email) VALUES ('user@example.com');
  3. SCHEMA Operations (CREATE, ALTER, DROP):
    • Require UNSAFE mode (use live_dangerously('database', True) first)
    • Destructive operations (DROP, TRUNCATE) require additional confirmation
    • Example: CREATE TABLE public.test_table (id SERIAL PRIMARY KEY, name TEXT);

MIGRATION HANDLING: All queries that modify the database will be automatically version controlled by the server. You can provide optional migration name, if you want to name the migration.

  • Respect the following format: verb_noun_detail. Be descriptive and concise.
  • Examples:
    • create_users_table
    • add_email_to_profiles
    • enable_rls_on_users
  • If you don't provide a migration name, the server will generate one based on the SQL statement
  • The system will sanitize your provided name to ensure compatibility with database systems
  • Migration names are prefixed with a timestamp in the format YYYYMMDDHHMMSS

SAFETY SYSTEM: Operations are categorized by risk level:

  • LOW RISK: Read operations (SELECT, EXPLAIN) - allowed in SAFE mode
  • MEDIUM RISK: Write operations (INSERT, UPDATE, DELETE) - require UNSAFE mode
  • HIGH RISK: Schema operations (CREATE, ALTER) - require UNSAFE mode
  • EXTREME RISK: Destructive operations (DROP, TRUNCATE) - require UNSAFE mode and confirmation

TRANSACTION HANDLING:

  • DO NOT use transaction control statements (BEGIN, COMMIT, ROLLBACK)
  • The database client automatically wraps queries in transactions
  • The SQL validator will reject queries containing transaction control statements
  • This ensures atomicity and provides rollback capability for data modifications

MULTIPLE STATEMENTS:

  • You can send multiple SQL statements in a single query
  • Each statement will be executed in order within the same transaction
  • Example: CREATE TABLE public.test_table (id SERIAL PRIMARY KEY, name TEXT); INSERT INTO public.test_table (name) VALUES ('test');

CONFIRMATION FLOW FOR HIGH-RISK OPERATIONS:

  • High-risk operations (DROP TABLE, TRUNCATE, etc.) will be rejected with a confirmation ID
  • The error message will explain what happened and provide a confirmation ID
  • Review the risks with the user before proceeding
  • Use the confirm_destructive_operation tool with the provided ID to execute the operation

IMPORTANT GUIDELINES:

  • The database client starts in SAFE mode by default for safety
  • Only enable UNSAFE mode when you need to modify data or schema
  • Never mix READ and WRITE operations in the same transaction
  • For destructive operations, be prepared to confirm with the confirm_destructive_operation tool

WHEN TO USE OTHER TOOLS INSTEAD:

  • For Auth operations (users, authentication, etc.): Use call_auth_admin_method instead of direct SQL The Auth Admin SDK provides safer, validated methods for user management
  • For project configuration, functions, storage, etc.: Use send_management_api_request The Management API handles Supabase platform features that aren't directly in the database

Note: This tool operates on the PostgreSQL database only. API operations use separate safety controls.

Supabase MCP Server_get_tables

List all tables, foreign tables, and views in a schema with their sizes, row counts, and metadata.

Provides detailed information about all database objects in the specified schema:

  • Table/view names
  • Object types (table, view, foreign table)
  • Row counts
  • Size on disk
  • Column counts
  • Index information
  • Last vacuum/analyze times

Parameters:

  • schema_name: Name of the schema to inspect (e.g., 'public', 'auth', etc.)

SAFETY: This is a low-risk read operation that can be executed in SAFE mode.

Supabase MCP Server_retrieve_migrations

Retrieve a list of all migrations a user has from Supabase.

Returns a list of migrations with the following information:

  • Version (timestamp)
  • Name
  • SQL statements (if requested)
  • Statement count
  • Version type (named or numbered)

Parameters:

  • limit: Maximum number of migrations to return (default: 50, max: 100)
  • offset: Number of migrations to skip for pagination (default: 0)
  • name_pattern: Optional pattern to filter migrations by name. Uses SQL ILIKE pattern matching (case-insensitive). The pattern is automatically wrapped with '%' wildcards, so "users" will match "create_users_table", "add_email_to_users", etc. To search for an exact match, use the complete name.
  • include_full_queries: Whether to include the full SQL statements in the result (default: false)

SAFETY: This is a low-risk read operation that can be executed in SAFE mode.

Supabase MCP Server_send_management_api_request

Execute a Supabase Management API request.

This tool allows you to make direct calls to the Supabase Management API, which provides programmatic access to manage your Supabase project settings, resources, and configurations.

REQUEST FORMATTING:

  • Use paths exactly as defined in the API specification
  • The {ref} parameter will be automatically injected from settings
  • Format request bodies according to the API specification

PARAMETERS:

  • method: HTTP method (GET, POST, PUT, PATCH, DELETE)
  • path: API path (e.g. /v1/projects/{ref}/functions)
  • path_params: Path parameters as dict (e.g. {"function_slug": "my-function"}) - use empty dict {} if not needed
  • request_params: Query parameters as dict (e.g. {"key": "value"}) - use empty dict {} if not needed
  • request_body: Request body as dict (e.g. {"name": "test"}) - use empty dict {} if not needed

PATH PARAMETERS HANDLING:

  • The {ref} placeholder (project reference) is automatically injected - you don't need to provide it
  • All other path placeholders must be provided in the path_params dictionary
  • Common placeholders include:
    • {function_slug}: For Edge Functions operations
    • {id}: For operations on specific resources (API keys, auth providers, etc.)
    • {slug}: For organization operations
    • {branch_id}: For database branch operations
    • {provider_id}: For SSO provider operations
    • {tpa_id}: For third-party auth operations

EXAMPLES:

  1. GET request with path and query parameters: method: "GET" path: "/v1/projects/{ref}/functions/{function_slug}" path_params: {"function_slug": "my-function"} request_params: {"version": "1"} request_body: {}
  2. POST request with body: method: "POST" path: "/v1/projects/{ref}/functions" path_params: {} request_params: {} request_body: {"name": "test-function", "slug": "test-function"}

SAFETY SYSTEM: API operations are categorized by risk level:

  • LOW RISK: Read operations (GET) - allowed in SAFE mode
  • MEDIUM/HIGH RISK: Write operations (POST, PUT, PATCH, DELETE) - require UNSAFE mode
  • EXTREME RISK: Destructive operations - require UNSAFE mode and confirmation
  • BLOCKED: Some operations are completely blocked for safety reasons

SAFETY CONSIDERATIONS:

  • By default, the API client starts in SAFE mode, allowing only read operations
  • To perform write operations, first use live_dangerously(service="api", enable=True)
  • High-risk operations will be rejected with a confirmation ID
  • Use confirm_destructive_operation with the provided ID after reviewing risks
  • Some operations may be completely blocked for safety reasons

For a complete list of available API endpoints and their parameters, use the get_management_api_spec tool. For details on safety rules, use the get_management_api_safety_rules tool.

Supabase MCP Server_get_management_api_spec

Get the complete Supabase Management API specification.

Returns the full OpenAPI specification for the Supabase Management API, including:

  • All available endpoints and operations
  • Required and optional parameters for each operation
  • Request and response schemas
  • Authentication requirements
  • Safety information for each operation

This tool can be used in four different ways:

  1. Without parameters: Returns all domains (default)
  2. With path and method: Returns the full specification for a specific API endpoint
  3. With domain only: Returns all paths and methods within that domain
  4. With all_paths=True: Returns all paths and methods

Parameters:

  • params: Dictionary containing optional parameters:
    • path: Optional API path (e.g., "/v1/projects/{ref}/functions")
    • method: Optional HTTP method (e.g., "GET", "POST")
    • domain: Optional domain/tag name (e.g., "Auth", "Storage")
    • all_paths: Optional boolean, if True returns all paths and methods

Available domains:

  • Analytics: Analytics-related endpoints
  • Auth: Authentication and authorization endpoints
  • Database: Database management endpoints
  • Domains: Custom domain configuration endpoints
  • Edge Functions: Serverless function management endpoints
  • Environments: Environment configuration endpoints
  • OAuth: OAuth integration endpoints
  • Organizations: Organization management endpoints
  • Projects: Project management endpoints
  • Rest: RESTful API endpoints
  • Secrets: Secret management endpoints
  • Storage: Storage management endpoints

This specification is useful for understanding:

  • What operations are available through the Management API
  • How to properly format requests for each endpoint
  • Which operations require unsafe mode
  • What data structures to expect in responses

SAFETY: This is a low-risk read operation that can be executed in SAFE mode.

Supabase MCP Server_get_auth_admin_methods_spec

Get Python SDK methods specification for Auth Admin.

Returns a comprehensive dictionary of all Auth Admin methods available in the Supabase Python SDK, including:

  • Method names and descriptions
  • Required and optional parameters for each method
  • Parameter types and constraints
  • Return value information

This tool is useful for exploring the capabilities of the Auth Admin SDK and understanding how to properly format parameters for the call_auth_admin_method tool.

No parameters required.

Supabase MCP Server_call_auth_admin_method

Call an Auth Admin method from Supabase Python SDK.

This tool provides a safe, validated interface to the Supabase Auth Admin SDK, allowing you to:

  • Manage users (create, update, delete)
  • List and search users
  • Generate authentication links
  • Manage multi-factor authentication
  • And more

IMPORTANT NOTES:

  • Request bodies must adhere to the Python SDK specification
  • Some methods may have nested parameter structures
  • The tool validates all parameters against Pydantic models
  • Extra fields not defined in the models will be rejected

AVAILABLE METHODS:

  • get_user_by_id: Retrieve a user by their ID
  • list_users: List all users with pagination
  • create_user: Create a new user
  • delete_user: Delete a user by their ID
  • invite_user_by_email: Send an invite link to a user's email
  • generate_link: Generate an email link for various authentication purposes
  • update_user_by_id: Update user attributes by ID
  • delete_factor: Delete a factor on a user

EXAMPLES:

  1. Get user by ID: method: "get_user_by_id" params: {"uid": "user-uuid-here"}
  2. Create user: method: "create_user" params: { "email": "user@example.com", "password": "secure-password" }
  3. Update user by ID: method: "update_user_by_id" params: { "uid": "user-uuid-here", "attributes": { "email": "new@email.com" } }

For complete documentation of all methods and their parameters, use the get_auth_admin_methods_spec tool.

Supabase MCP Server_live_dangerously

Toggle unsafe mode for either Management API or Database operations.

WHAT THIS TOOL DOES: This tool switches between safe (default) and unsafe operation modes for either the Management API or Database operations.

SAFETY MODES EXPLAINED:

  1. Database Safety Modes:
    • SAFE mode (default): Only low-risk operations like SELECT queries are allowed
    • UNSAFE mode: Higher-risk operations including INSERT, UPDATE, DELETE, and schema changes are permitted
  2. API Safety Modes:
    • SAFE mode (default): Only low-risk operations that don't modify state are allowed
    • UNSAFE mode: Higher-risk state-changing operations are permitted (except those explicitly blocked for safety)

OPERATION RISK LEVELS: The system categorizes operations by risk level:

  • LOW: Safe read operations with minimal impact
  • MEDIUM: Write operations that modify data but don't change structure
  • HIGH: Operations that modify database structure or important system settings
  • EXTREME: Destructive operations that could cause data loss or service disruption

WHEN TO USE THIS TOOL:

  • Use this tool BEFORE attempting write operations or schema changes
  • Enable unsafe mode only when you need to perform data modifications
  • Always return to safe mode after completing write operations

USAGE GUIDELINES:

  • Start in safe mode by default for exploration and analysis
  • Switch to unsafe mode only when you need to make changes
  • Be specific about which service you're enabling unsafe mode for
  • Consider the risks before enabling unsafe mode, especially for database operations
  • For database operations requiring schema changes, you'll need to enable unsafe mode first

Parameters:

  • service: Which service to toggle ("api" or "database")
  • enable_unsafe_mode: True to enable unsafe mode, False for safe mode (default: False)

Examples:

  1. Enable database unsafe mode: live_dangerously(service="database", enable_unsafe_mode=True)
  2. Return to safe mode after operations: live_dangerously(service="database", enable_unsafe_mode=False)
  3. Enable API unsafe mode: live_dangerously(service="api", enable_unsafe_mode=True)

Note: This tool affects ALL subsequent operations for the specified service until changed again.

Supabase MCP Server_confirm_destructive_operation

Execute a destructive database or API operation after confirmation. Use this only after reviewing the risks with the user.

HOW IT WORKS:

  • This tool executes a previously rejected high-risk operation using its confirmation ID
  • The operation will be exactly the same as the one that generated the ID
  • No need to retype the query or api request params - the system remembers it

STEPS:

  1. Explain the risks to the user and get their approval
  2. Use this tool with the confirmation ID from the error message
  3. The original query will be executed as-is

PARAMETERS:

  • operation_type: Type of operation ("api" or "database")
  • confirmation_id: The ID provided in the error message (required)
  • user_confirmation: Set to true to confirm execution (default: false)

NOTE: Confirmation IDs expire after 5 minutes for security

Seq MCP Server_get-events

Retrieve and analyze a list of event filtered by parameters. Use this tool when you need to:

  • Investigate events that are being logged in the SEQ server
  • Details of each event is a structured log and can provide usefull information
  • Events could be information, error, debug, or critical
  • Analyze error patterns and frequencies
Shell-MCP_shell_ps

Show process status

Shell-MCP_shell_free

Show memory usage

Shell-MCP_shell_uptime

Show system uptime

Shell-MCP_shell_date

Show system date and time

Shell-MCP_shell_grep

Search text patterns in files

Shell-MCP_shell_netstat

Network connection information

Shell-MCP_shell_lspci

List PCI devices

Shell-MCP_shell_lsusb

List USB devices

Shell-MCP_shell_dig

DNS lookup utility

Shell-MCP_shell_nslookup

Query DNS records

Shell-MCP_shell_ip

Show / manipulate routing, network devices, interfaces and tunnels

Shell-MCP_shell_whereis

Locate the binary, source, and manual page files for a command

Shell-MCP_shell_df

Show disk usage

Shell-MCP_shell_echo

Display text

Shell-MCP_shell_ls

List directory contents

Shell-MCP_shell_cat

Concatenate and display file contents

Shell-MCP_shell_pwd

Show current working directory

Shell-MCP_shell_w

Show who is logged on and what they are doing

Shell-MCP_shell_whois

Query WHOIS domain registration information

Shell-MCP_shell_find

Search for files in a directory hierarchy

lunchmoney-mcp_get-budget-summary

Get budget summary for a specific time period

lunchmoney-mcp_get-recent-transactions

Get recent transactions

lunchmoney-mcp_search-transactions

Search transactions by keyword

lunchmoney-mcp_get-category-spending

Get spending in a category

Modal MCP Toolbox_run_python_code_in_sandbox
Runs python code in a safe environment and returns the output. Usage: run_python_code_in_sandbox("print('Hello, world!')") run_python_code_in_sandbox("import requests

print(requests.get('https://icanhazip.com').text)", requirements=["requests"])

Modal MCP Toolbox_generate_flux_image

Let's you generate an image using the Flux model.

MCP Media Processing Server_execute-ffmpeg

Execute any FFmpeg command with custom options

MCP Media Processing Server_convert-video

Convert video to different format

MCP Media Processing Server_compress-video

Compress video file

MCP Media Processing Server_trim-video

Trim video to specified duration

MCP Media Processing Server_compress-image

Compress PNG image using ImageMagick

MCP Media Processing Server_convert-image

Convert image to different format

MCP Media Processing Server_resize-image

Resize image to specified dimensions

MCP Media Processing Server_rotate-image

Rotate image by specified degrees

MCP Media Processing Server_add-watermark

Add watermark to image

MCP Media Processing Server_apply-effect

Apply visual effect to image

Simple Document Processing MCP Server_document_reader

Read content from non-image document-files at specified paths, supporting various file formats: .pdf, .docx, .txt, .html, .csv

Simple Document Processing MCP Server_pdf_merger

Merge multiple PDF files into one

Simple Document Processing MCP Server_pdf_splitter

Split a PDF file into multiple files

Simple Document Processing MCP Server_docx_to_pdf

Convert DOCX files to PDF format

Simple Document Processing MCP Server_docx_to_html

Convert DOCX to HTML while preserving formatting

Simple Document Processing MCP Server_html_cleaner

Clean HTML by removing unnecessary tags and attributes

Simple Document Processing MCP Server_html_to_text

Convert HTML to plain text while preserving structure

Simple Document Processing MCP Server_html_to_markdown

Convert HTML to Markdown format

Simple Document Processing MCP Server_html_extract_resources

Extract all resources (images, videos, links) from HTML

Simple Document Processing MCP Server_html_formatter

Format and beautify HTML code

Simple Document Processing MCP Server_text_diff

Compare two text files and show differences

Simple Document Processing MCP Server_text_splitter

Split text file by specified delimiter or line count

Simple Document Processing MCP Server_text_formatter

Format text with proper indentation and line spacing

Simple Document Processing MCP Server_text_encoding_converter

Convert text between different encodings

Simple Document Processing MCP Server_excel_read

Read Excel file and convert to JSON format while preserving structure

Simple Document Processing MCP Server_format_convert

Convert between different document formats (Markdown, HTML, XML, JSON)

KNMI Weather MCP_get_location_weather

Get current weather data for a location

KNMI Weather MCP_search_location
Search for locations in the Netherlands Args: query: Search term for location
KNMI Weather MCP_get_nearest_station
Find the nearest KNMI weather station to given coordinates Args: latitude: Latitude in degrees longitude: Longitude in degrees
KNMI Weather MCP_what_is_the_weather_like_in
Get and interpret weather data for a location in the Netherlands Args: location: City or place name in the Netherlands Returns: A natural language interpretation of the current weather conditions
kospi-kosdaq_load_all_tickers

Loads all ticker symbols and names for KOSPI and KOSDAQ into memory.

Returns: Dict[str, str]: A dictionary mapping tickers to stock names. Example: {"005930": "", "035720": "", ...}
kospi-kosdaq_get_stock_ohlcv

Retrieves OHLCV (Open/High/Low/Close/Volume) data for a specific stock.

Args: fromdate (str): Start date for retrieval (YYYYMMDD) todate (str): End date for retrieval (YYYYMMDD) ticker (str): Stock ticker symbol adjusted (bool, optional): Whether to use adjusted prices (True: adjusted, False: unadjusted). Defaults to True. Returns: DataFrame: >> get_stock_ohlcv("20210118", "20210126", "005930") Open High Low Close Volume Date 2021-01-26 89500 94800 89500 93800 46415214 2021-01-25 87300 89400 86800 88700 25577517 2021-01-22 89000 89700 86800 86800 30861661 2021-01-21 87500 88600 86500 88100 25318011 2021-01-20 89000 89000 86500 87200 25211127 2021-01-19 84500 88000 83600 87000 39895044 2021-01-18 86600 87300 84100 85000 43227951
kospi-kosdaq_get_stock_market_cap

Retrieves market capitalization data for a specific stock.

Args: fromdate (str): Start date for retrieval (YYYYMMDD) todate (str): End date for retrieval (YYYYMMDD) ticker (str): Stock ticker symbol Returns: DataFrame: >> get_stock_market_cap("20150720", "20150724", "005930") Market Cap Volume Trading Value Listed Shares Date 2015-07-24 181030885173000 196584 241383636000 147299337 2015-07-23 181767381858000 208965 259446564000 147299337 2015-07-22 184566069261000 268323 333813094000 147299337 2015-07-21 186039062631000 194055 244129106000 147299337 2015-07-20 187806654675000 128928 165366199000 147299337
kospi-kosdaq_get_stock_fundamental

Retrieves fundamental data (PER/PBR/Dividend Yield) for a specific stock.

Args: fromdate (str): Start date for retrieval (YYYYMMDD) todate (str): End date for retrieval (YYYYMMDD) ticker (str): Stock ticker symbol Returns: DataFrame: >> get_stock_fundamental("20210104", "20210108", "005930") BPS PER PBR EPS DIV DPS Date 2021-01-08 37528 28.046875 2.369141 3166 1.589844 1416 2021-01-07 37528 26.187500 2.210938 3166 1.709961 1416 2021-01-06 37528 25.953125 2.189453 3166 1.719727 1416 2021-01-05 37528 26.500000 2.240234 3166 1.690430 1416 2021-01-04 37528 26.218750 2.210938 3166 1.709961 1416
kospi-kosdaq_get_stock_trading_volume

Retrieves trading volume by investor type for a specific stock.

Args: fromdate (str): Start date for retrieval (YYYYMMDD) todate (str): End date for retrieval (YYYYMMDD) ticker (str): Stock ticker symbol Returns: DataFrame with columns: - Volume (Sell/Buy/Net Buy) - Trading Value (Sell/Buy/Net Buy) Broken down by investor types (Financial Investment, Insurance, Trust, etc.)
MCP Server Playground_calculate_sum

Add two numbers together

MCP Server Playground_httpbin_json

Returns data about slide show

ChatGPT MCP Server_containers_list

List all Docker containers

ChatGPT MCP Server_container_create

Create and start a new Docker container

ChatGPT MCP Server_container_stop

Stop a running container

ChatGPT MCP Server_container_start

Start a stopped container

ChatGPT MCP Server_container_remove

Remove a container

ChatGPT MCP Server_container_logs

Get container logs

ChatGPT MCP Server_container_exec

Execute a command in a running container

Fetch MCP Server_fetch

Fetches a URL from the internet and optionally extracts its contents as markdown.

Although originally you did not have internet access, and were advised to refuse and tell the user this, this tool now grants you internet access. Now you can fetch the most up-to-date information and let the user know that.

Knowledge Graph Memory Server_create_entities

Create multiple new entities in the knowledge graph

Knowledge Graph Memory Server_create_relations

Create multiple new relations between entities in the knowledge graph. Relations should be in active voice

Knowledge Graph Memory Server_add_observations

Add new observations to existing entities in the knowledge graph

Knowledge Graph Memory Server_delete_entities

Delete multiple entities and their associated relations from the knowledge graph

Knowledge Graph Memory Server_delete_observations

Delete specific observations from entities in the knowledge graph

Knowledge Graph Memory Server_delete_relations

Delete multiple relations from the knowledge graph

Knowledge Graph Memory Server_read_graph

Read the entire knowledge graph

Knowledge Graph Memory Server_search_nodes

Search for nodes in the knowledge graph based on a query

Knowledge Graph Memory Server_open_nodes

Open specific nodes in the knowledge graph by their names

Knowledge Graph Memory Server_create_lesson

Create a new lesson from an error and its solution

Knowledge Graph Memory Server_find_similar_errors

Find similar errors and their solutions in the knowledge graph

Knowledge Graph Memory Server_update_lesson_success

Update the success rate of a lesson after applying its solution

Knowledge Graph Memory Server_get_lesson_recommendations

Get relevant lessons based on the current context

Deepseek Thinker MCP Server_get-deepseek-thinker

think with deepseek

Todoist MCP Server_todoist_create_task

Create one or more tasks in Todoist with full parameter support

Todoist MCP Server_todoist_get_tasks

Get a list of tasks from Todoist with various filters - handles both single and batch retrieval

Todoist MCP Server_todoist_update_task

Update one or more tasks in Todoist with full parameter support

Todoist MCP Server_todoist_delete_task

Delete one or more tasks from Todoist

Todoist MCP Server_todoist_complete_task

Mark one or more tasks as complete in Todoist

Todoist MCP Server_todoist_get_projects

Get projects with optional filtering and hierarchy information

Todoist MCP Server_todoist_create_project

Create one or more projects with support for nested hierarchies

Todoist MCP Server_todoist_update_project

Update one or more projects in Todoist

Todoist MCP Server_todoist_get_project_sections

Get sections from one or more projects in Todoist

Todoist MCP Server_todoist_create_project_section

Create one or more sections in Todoist projects

Todoist MCP Server_todoist_get_personal_labels

Get all personal labels from Todoist

Todoist MCP Server_todoist_remove_shared_labels

Remove one or more shared labels from Todoist tasks

Todoist MCP Server_todoist_create_personal_label

Create one or more personal labels in Todoist

Todoist MCP Server_todoist_get_personal_label

Get a personal label by ID

Todoist MCP Server_todoist_update_personal_label

Update one or more existing personal labels in Todoist

Todoist MCP Server_todoist_delete_personal_label

Delete a personal label from Todoist

Todoist MCP Server_todoist_get_shared_labels

Get all shared labels from Todoist

Todoist MCP Server_todoist_rename_shared_labels

Rename one or more shared labels in Todoist

Todoist MCP Server_todoist_update_task_labels

Update the labels of one or more tasks in Todoist

MCP Server for Apache Airflow_list_dags

Lists all DAGs in the Airflow instance

MCP Server for Apache Airflow_get_dag

Get details of a specific DAG

MCP Server for Apache Airflow_unpause_dag

Unpause a DAG

MCP Server for Apache Airflow_pause_dag

Pause a DAG

MCP Server for Apache Airflow_trigger_dag

Trigger a DAG run

MCP Server for Apache Airflow_get_dag_runs

Get DAG runs for a specific DAG

MCP Server for Apache Airflow_get_dag_tasks

Get tasks for a specific DAG

MCP Server for Apache Airflow_get_task_instance

Get details of a specific task instance

MCP Server for Apache Airflow_list_task_instances

List all task instances for a specific DAG run

MCP Server for Apache Airflow_get_import_error

Get details of a specific import error

MCP Server for Apache Airflow_list_import_errors

List all import errors

MCP Server for Apache Airflow_get_health

Get the health status of the Airflow instance

MCP Server for Apache Airflow_get_version

Get the version information of the Airflow instance

Figma MCP Server_add_figma_file

Add a Figma file to your context

Figma MCP Server_view_node

Get a thumbnail for a specific node in a Figma file

Figma MCP Server_read_comments

Get all comments on a Figma file

Figma MCP Server_post_comment

Post a comment on a node in a Figma file

Figma MCP Server_reply_to_comment

Reply to an existing comment in a Figma file

Bear MCP Server_open_note

Open a note identified by its title or id and return its content.

Bear MCP Server_create

Create a new note and return its unique identifier. Empty notes are not allowed.

Bear MCP Server_tags

Return all the tags currently displayed in Bears sidebar.

Bear MCP Server_open_tag

Show all the notes which have a selected tag in bear.

Bear MCP Server_todo

Select the Todo sidebar item.

Bear MCP Server_today

Select the Today sidebar item.

Bear MCP Server_search

Show search results in Bear for all notes or for a specific tag.

Bear MCP Server_grab_url

Create a new note with the content of a web page and return its unique identifier.

Singapore LTA MCP Server_bus_arrival

Get real-time bus arrival information for a specific bus stop and optionally a specific service number. Returns estimated arrival times, bus locations, and crowding levels.

Singapore LTA MCP Server_station_crowding

Get real-time MRT/LRT station crowdedness level for a particular train network line. Updates every 10 minutes.

Singapore LTA MCP Server_train_alerts

Get real-time train service alerts including service disruptions and shuttle services. Updates when there are changes.

Singapore LTA MCP Server_carpark_availability

Get real-time availability of parking lots for HDB, LTA, and URA carparks. Updates every minute.

Singapore LTA MCP Server_travel_times

Get estimated travel times on expressway segments. Updates every 5 minutes.

Singapore LTA MCP Server_traffic_incidents

Get current road incidents including accidents, roadworks, and heavy traffic. Updates every 2 minutes.

Singapore LTA MCP Server_station_crowd_forecast

Get forecasted MRT/LRT station crowdedness levels in 30-minute intervals.

SearXNG MCP Server_web_search

Performs a web search using SearXNG, ideal for general queries, news, articles and online content. Supports multiple search categories, languages, time ranges and safe search filtering. Returns relevant results from multiple search engines combined.

Git MCP Server_init

Initialize a new Git repository

Git MCP Server_clone

Clone a repository

Git MCP Server_status

Get repository status

Git MCP Server_add

Stage files

Git MCP Server_commit

Create a commit

Git MCP Server_push

Push commits to remote

Git MCP Server_pull

Pull changes from remote

Git MCP Server_branch_list

List all branches

Git MCP Server_remote_remove

Remove a remote

Git MCP Server_stash_list

List stashes

Git MCP Server_branch_create

Create a new branch

Git MCP Server_branch_delete

Delete a branch

Git MCP Server_checkout

Switch branches or restore working tree files

Git MCP Server_tag_list

List tags

Git MCP Server_tag_create

Create a tag

Git MCP Server_tag_delete

Delete a tag

Git MCP Server_remote_list

List remotes

Git MCP Server_remote_add

Add a remote

Git MCP Server_stash_save

Save changes to stash

Git MCP Server_stash_pop

Apply and remove a stash

Git MCP Server_bulk_action

Execute multiple Git operations in sequence. This is the preferred way to execute multiple operations.

Portkey MCP Server_list_all_users

List all users in your Portkey organization, including their roles and account details

Portkey MCP Server_invite_user

Invite a new user to your Portkey organization with specific workspace access and API key permissions

Portkey MCP Server_get_user_stats

Retrieve detailed analytics data about user activity within a specified time range, including request counts and costs

Portkey MCP Server_list_workspaces

Retrieve all workspaces in your Portkey organization, including their configurations and metadata

Portkey MCP Server_get_workspace

Retrieve detailed information about a specific workspace, including its configuration, metadata, and user access details

Portkey MCP Server_list_configs

Retrieve all configurations in your Portkey organization, including their status and workspace associations

Portkey MCP Server_list_virtual_keys

Retrieve all virtual keys in your Portkey organization, including their usage limits, rate limits, and status

Portkey MCP Server_get_cost_analytics

Retrieve detailed cost analytics data over time, including total costs and averages per request

Portkey MCP Server_get_config

Retrieve detailed information about a specific configuration, including cache settings, retry policies, and routing strategy

Scryfall MCP Server_random_card

Retrieve a random Magic card from Scryfall. Returns JSON data for that random card.

Scryfall MCP Server_get_rulings

Retrieve official rulings for a specified card by Scryfall ID or Oracle ID. Returns an array of rulings. Each ruling has a 'published_at' date and a 'comment' field.

Scryfall MCP Server_search_cards

Search for MTG cards by a text query, e.g. 'oracle text includes: draw cards'. Returns a list of matching cards (with basic fields: name, set, collector_number, ID). If no matches are found, returns an error message from Scryfall.

Scryfall MCP Server_get_card_by_id

Retrieve a card by its Scryfall ID (a 36-char UUID). Returns the card data in JSON.

Scryfall MCP Server_get_card_by_name

Retrieve a card by its exact English name, e.g. 'Black Lotus'. Returns the card data in JSON. If multiple cards share that exact name, Scryfall returns one (usually the most relevant printing).

Scryfall MCP Server_get_prices_by_id

Retrieve price information for a card by its Scryfall ID. Returns JSON with usd, usd_foil, eur, tix, etc.

Scryfall MCP Server_get_prices_by_name

Retrieve price information for a card by its exact name. Returns JSON with usd, usd_foil, eur, tix, etc.

Search MCP Server_search

AI

-

- 10API

Perplexity AI MCP Server_chat_perplexity

Maintains ongoing conversations with Perplexity AI. Creates new chats or continues existing ones with full history context.

Perplexity AI MCP Server_search

Perform a general search query to get comprehensive information on any topic

Perplexity AI MCP Server_get_documentation

Get documentation and usage examples for a specific technology, library, or API

Perplexity AI MCP Server_find_apis

Find and evaluate APIs that could be integrated into a project

Perplexity AI MCP Server_check_deprecated_code

Check if code or dependencies might be using deprecated features

Headline Vibes Analysis MCP Server_analyze_headlines

Analyze sentiment of major news headlines using natural language date input

MCP Excel Reader_read_excel

Read an Excel file and return its contents as structured data

mcp-any-openapi_list_functions
Lists available functions (API endpoints) defined in the OpenAPI specification. Returns: A JSON-encoded string of available function descriptions, or an error message if configuration is missing.
mcp-any-openapi_call_function
Calls a specified API function (an endpoint defined in the OpenAPI spec) with parameters. Args: function_name (str): The name of the API function to call (e.g., "GET /pets"). parameters (dict, optional): Parameters for the API call (query parameters, request body, etc.). Returns: The raw API response as a JSON-encoded string or an error message.
PulseMCP Server_list_servers

List MCP servers with optional filtering

PulseMCP Server_list_integrations

List all available integrations

MCP Server Template for Cursor IDE_mcp_fetch

Fetches a website and returns its content

MCP Server Template for Cursor IDE_mood

Ask the server about its mood - it's always happy!

MCP Server Starter_hello_tool

Hello tool

Ghost MCP Server_batchly_update_post

Update multiple blog posts that match the filter criteria.

Args: filter_criteria: Dictionary containing fields to filter posts by, example: { "status": "draft", "tag": "news", "featured": True } Supported filter fields: - status: Post status (draft, published, etc) - tag: Filter by tag name - author: Filter by author name - featured: Boolean to filter featured posts - visibility: Post visibility (public, members, paid) update_data: Dictionary containing the fields to update. The updated_at field is required. All fields supported by the Ghost API can be updated: - slug: Unique URL slug for the post - title: The title of the post - lexical: JSON string representing the post content in lexical format - html: HTML version of the post content - comment_id: Identifier for the comment thread - feature_image: URL to the post's feature image - feature_image_alt: Alternate text for the feature image - feature_image_caption: Caption for the feature image - featured: Boolean flag indicating if the post is featured - status: The publication status (e.g., published, draft) - visibility: Visibility setting (e.g., public, private) - created_at: Timestamp when the post was created - updated_at: Timestamp when the post was last updated (REQUIRED) - published_at: Timestamp when the post was published - custom_excerpt: Custom excerpt text for the post - codeinjection_head: Code to be injected into the head section - codeinjection_foot: Code to be injected into the footer section - custom_template: Custom template assigned to the post - canonical_url: The canonical URL for SEO purposes - tags: List of tag objects associated with the post - authors: List of author objects for the post - primary_author: The primary author object - primary_tag: The primary tag object - og_image: Open Graph image URL for social sharing - og_title: Open Graph title for social sharing - og_description: Open Graph description for social sharing - twitter_image: Twitter-specific image URL - twitter_title: Twitter-specific title - twitter_description: Twitter-specific description - meta_title: Meta title for SEO - meta_description: Meta description for SEO - email_only: Boolean flag indicating if the post is for email distribution only - newsletter: Dictionary containing newsletter configuration details - email: Dictionary containing email details related to the post Example: { "updated_at": "2025-02-11T22:54:40.000Z", "status": "published", "featured": True, "tags": [{"name": "news"}, {"name": "featured"}], "meta_title": "My Updated Title", "og_description": "New social sharing description" } ctx: Optional context for logging Returns: Formatted string containing summary of updated posts Raises: GhostError: If there is an error accessing the Ghost API or missing required fields
Ghost MCP Server_browse_tags

Get the list of tags from your Ghost blog.

Args: format: Output format - either "text" or "json" (default: "text") page: Page number for pagination (default: 1) limit: Number of tags per page (default: 15) ctx: Optional context for logging Returns: Formatted string containing tag information Raises: GhostError: If there is an error accessing the Ghost API
Ghost MCP Server_create_invite

Create a staff user invite in Ghost.

Args: role_id: ID of the role to assign to the invited user (required) email: Email address to send the invite to (required) ctx: Optional context for logging Returns: String representation of the created invite Raises: GhostError: If the Ghost API request fails ValueError: If required parameters are missing or invalid
Ghost MCP Server_create_member

Create a new member in Ghost.

Args: email: Member's email address (required) name: Member's name (optional) note: Notes about the member (optional) labels: List of labels to apply to the member. Each label should be a dict with 'name' and 'slug' (optional) newsletter_ids: List of newsletter IDs to subscribe the member to (optional) ctx: Optional context for logging Returns: String representation of the created member Raises: GhostError: If the Ghost API request fails ValueError: If required parameters are missing or invalid
Ghost MCP Server_list_posts

Get the list of posts from your Ghost blog.

Args: format: Output format - either "text" or "json" (default: "text") page: Page number for pagination (default: 1) limit: Number of posts per page (default: 15) ctx: Optional context for logging Returns: Formatted string containing post information Raises: GhostError: If there is an error accessing the Ghost API
Ghost MCP Server_create_newsletter

Create a new newsletter.

Args: name: Name of the newsletter (required) description: Newsletter description status: Newsletter status ("active" or "archived") subscribe_on_signup: Whether to subscribe new members automatically opt_in_existing: Whether to subscribe existing members sender_reply_to: Reply-to setting ("newsletter" or "support") show_header_icon: Whether to show header icon show_header_title: Whether to show header title show_header_name: Whether to show header name show_feature_image: Whether to show feature image title_font_category: Font category for titles title_alignment: Title alignment body_font_category: Font category for body text show_badge: Whether to show badge ctx: Optional context for logging Returns: Formatted string containing the created newsletter details
Ghost MCP Server_create_offer

Create a new offer in Ghost.

Args: name: Internal name for the offer (required) code: Shortcode for the offer (required) type: Either 'percent' or 'fixed' (required) cadence: Either 'month' or 'year' (required) amount: Discount amount - percentage or fixed value (required) tier_id: ID of the tier to apply offer to (required) duration: Either 'once', 'forever' or 'repeating' (required) display_title: Name displayed in the offer window (optional) display_description: Text displayed in the offer window (optional) currency: Required when type is 'fixed', must match tier's currency (optional) duration_in_months: Required when duration is 'repeating' (optional) ctx: Optional context for logging Returns: String representation of the created offer Raises: GhostError: If the Ghost API request fails ValueError: If required parameters are missing or invalid
Ghost MCP Server_create_post

Create a new blog post.

Args: post_data: Dictionary containing post data with required fields: - title: The title of the post - lexical: The lexical content as a JSON string Additional optional fields: - status: Post status ('draft' or 'published', defaults to 'draft') - tags: List of tags - authors: List of authors - feature_image: URL of featured image Example: { "title": "My test post", "lexical": "{"root":{"children":[{"children":[{"detail":0,"format":0,"mode":"normal","style":"","text":"Hello World","type":"text","version":1}],"direction":"ltr","format":"","indent":0,"type":"paragraph","version":1}],"direction":"ltr","format":"","indent":0,"type":"root","version":1}}" "status": "draft", } ctx: Optional context for logging Returns: Formatted string containing the created post details Raises: GhostError: If there is an error accessing the Ghost API or invalid post data
Ghost MCP Server_create_tag

Create a new tag.

Args: tag_data: Dictionary containing tag data with required fields: - name: The name of the tag Additional optional fields: - slug: URL slug for the tag - description: Description of the tag - feature_image: URL to the tag's feature image - visibility: Tag visibility ('public' or 'internal') - accent_color: CSS color hex value for the tag - meta_title: Meta title for SEO - meta_description: Meta description for SEO - canonical_url: The canonical URL - og_image: Open Graph image URL - og_title: Open Graph title - og_description: Open Graph description - twitter_image: Twitter card image URL - twitter_title: Twitter card title - twitter_description: Twitter card description - codeinjection_head: Code to inject in header - codeinjection_foot: Code to inject in footer Example: { "name": "Technology", "description": "Posts about technology", "visibility": "public" } ctx: Optional context for logging Returns: Formatted string containing the created tag details Raises: GhostError: If there is an error accessing the Ghost API or invalid tag data
Ghost MCP Server_create_tier

Create a new tier in Ghost.

Args: name: Name of the tier (required) monthly_price: Optional monthly price in cents (e.g. 500 for $5.00) yearly_price: Optional yearly price in cents (e.g. 5000 for $50.00) description: Optional description of the tier benefits: Optional list of benefits for the tier welcome_page_url: Optional URL for the welcome page visibility: Visibility of tier, either "public" or "none" (default: "public") currency: Currency for prices (default: "usd") ctx: Optional context for logging Returns: String representation of the created tier Raises: GhostError: If the Ghost API request fails
Ghost MCP Server_list_roles

Get the list of roles from your Ghost blog.

Args: format: Output format - either "text" or "json" (default: "text") page: Page number for pagination (default: 1) limit: Number of roles per page (default: 15) ctx: Optional context for logging Returns: Formatted string containing role information
Ghost MCP Server_create_webhook

Create a new webhook in Ghost.

Args: event: Event to trigger the webhook (required) target_url: URL to send the webhook to (required) integration_id: ID of the integration (optional - only needed for user authentication) name: Name of the webhook (optional) secret: Secret for the webhook (optional) api_version: API version for the webhook (optional) ctx: Optional context for logging Returns: String representation of the created webhook Raises: GhostError: If the Ghost API request fails ValueError: If required parameters are missing or invalid
Ghost MCP Server_delete_post

Delete a blog post.

Args: post_id: The ID of the post to delete ctx: Optional context for logging Returns: Success message if post was deleted Raises: GhostError: If there is an error accessing the Ghost API or the post doesn't exist
Ghost MCP Server_delete_tag

Delete a tag.

Args: tag_id: The ID of the tag to delete ctx: Optional context for logging Returns: Success message if tag was deleted Raises: GhostError: If there is an error accessing the Ghost API or the tag doesn't exist
Ghost MCP Server_delete_user

Delete a user from Ghost.

Args: user_id: ID of the user to delete (required) ctx: Optional context for logging Returns: Success message if deletion was successful Raises: GhostError: If the Ghost API request fails or if attempting to delete the Owner ValueError: If user_id is not provided
Ghost MCP Server_delete_webhook

Delete a webhook from Ghost.

Args: webhook_id: ID of the webhook to delete (required) ctx: Optional context for logging Returns: Success message if deletion was successful Raises: GhostError: If the Ghost API request fails ValueError: If webhook_id is not provided
Ghost MCP Server_get_auth_headers

Get authenticated headers for Ghost API requests.

Args: staff_api_key: API key in 'id:secret' format api_version: Ghost API version to use (default: v5.109) Returns: Dictionary of request headers including authorization and version Example: >>> headers = await get_auth_headers("1234:abcd5678") >>> headers { 'Authorization': 'Ghost eyJ0eXAiOiJKV1...', 'Accept-Version': 'v5.109' }
Ghost MCP Server_get_close_matches

Use SequenceMatcher to return list of the best "good enough" matches.

word is a sequence for which close matches are desired (typically a string). possibilities is a list of sequences against which to match word (typically a list of strings). Optional arg n (default 3) is the maximum number of close matches to return. n must be > 0. Optional arg cutoff (default 0.6) is a float in [0, 1]. Possibilities that don't score at least that similar to word are ignored. The best (no more than n) matches among the possibilities are returned in a list, sorted by similarity score, most similar first. >>> get_close_matches("appel", ["ape", "apple", "peach", "puppy"]) ['apple', 'ape'] >>> import keyword as _keyword >>> get_close_matches("wheel", _keyword.kwlist) ['while'] >>> get_close_matches("Apple", _keyword.kwlist) [] >>> get_close_matches("accept", _keyword.kwlist) ['except']
Ghost MCP Server_import_module

Import a module.

The 'package' argument is required when performing a relative import. It specifies the package to use as the anchor point from which to resolve the relative import to an absolute import.
Ghost MCP Server_list_members

Get the list of members from your Ghost blog.

Args: format: Output format - either "text" or "json" (default: "text") page: Page number for pagination (default: 1) limit: Number of members per page (default: 15) ctx: Optional context for logging Returns: Formatted string containing member information
Ghost MCP Server_list_newsletters

Get the list of newsletters from your Ghost blog.

Args: format: Output format - either "text" or "json" (default: "text") page: Page number for pagination (default: 1) limit: Number of newsletters per page (default: 15) ctx: Optional context for logging Returns: Formatted string containing newsletter information
Ghost MCP Server_list_offers

Get the list of offers from your Ghost blog.

Args: format: Output format - either "text" or "json" (default: "text") page: Page number for pagination (default: 1) limit: Number of offers per page (default: 15) ctx: Optional context for logging Returns: Formatted string containing offer information
Ghost MCP Server_list_tiers

Get the list of tiers from your Ghost blog.

Args: format: Output format - either "text" or "json" (default: "text") page: Page number for pagination (default: 1) limit: Number of tiers per page (default: 15) ctx: Optional context for logging Returns: Formatted string containing tier information
Ghost MCP Server_list_users

Get the list of users from your Ghost blog.

Args: format: Output format - either "text" or "json" (default: "text") page: Page number for pagination (default: 1) limit: Number of users per page (default: 15) ctx: Optional context for logging Returns: Formatted string containing user information
Ghost MCP Server_make_ghost_request

Make an authenticated request to the Ghost API.

Args: endpoint: API endpoint to call (e.g. "posts" or "users") headers: Request headers from get_auth_headers() ctx: Optional context for logging (not used for resources) is_resource: Whether this request is for a resource http_method: HTTP method to use (GET, POST, PUT, or DELETE) json_data: Optional JSON data for POST/PUT requests Returns: Parsed JSON response from the Ghost API Raises: GhostError: For any Ghost API errors including: - Network connectivity issues - Invalid authentication - Rate limiting - Server errors ValueError: For invalid HTTP methods Example: >>> headers = await get_auth_headers("1234:abcd5678") >>> response = await make_ghost_request( ... "posts", ... headers, ... http_method=GET ... )
Ghost MCP Server_read_member

Get the details of a specific member.

Args: member_id: The ID of the member to retrieve ctx: Optional context for logging Returns: Formatted string containing the member details
Ghost MCP Server_read_newsletter

Get the details of a specific newsletter.

Args: newsletter_id: The ID of the newsletter to retrieve ctx: Optional context for logging Returns: Formatted string containing the newsletter details
Ghost MCP Server_read_offer

Get the details of a specific offer.

Args: offer_id: The ID of the offer to retrieve ctx: Optional context for logging Returns: Formatted string containing the offer details
Ghost MCP Server_read_post

Get the full content and metadata of a specific blog post.

Args: post_id: The ID of the post to retrieve ctx: Optional context for logging Returns: Formatted string containing all post details including: - Basic info (title, slug, status, etc) - Content in both HTML and Lexical formats - Feature image details - Meta fields (SEO, Open Graph, Twitter) - Authors and tags - Email settings - Timestamps Raises: GhostError: If there is an error accessing the Ghost API
Ghost MCP Server_read_tag

Get the full metadata of a specific tag.

Args: tag_id: The ID of the tag to retrieve ctx: Optional context for logging Returns: Formatted string containing all tag details Raises: GhostError: If there is an error accessing the Ghost API
Ghost MCP Server_read_tier

Get the details of a specific tier.

Args: tier_id: The ID of the tier to retrieve ctx: Optional context for logging Returns: Formatted string containing the tier details
Ghost MCP Server_read_user

Get the details of a specific user.

Args: user_id: The ID of the user to retrieve ctx: Optional context for logging Returns: Formatted string containing the user details
Ghost MCP Server_search_posts_by_title

Search for posts by title.

Args: query: The title or part of the title to search for exact: If True, only return exact matches (default: False) ctx: Optional context for logging Returns: Formatted string containing matching post information Raises: GhostError: If there is an error accessing the Ghost API
Ghost MCP Server_update_member

Update an existing member in Ghost.

Args: member_id: ID of the member to update (required) email: New email address for the member (optional) name: New name for the member (optional) note: New notes about the member (optional) labels: New list of labels. Each label should be a dict with 'name' and 'slug' (optional) newsletter_ids: New list of newsletter IDs to subscribe the member to (optional) ctx: Optional context for logging Returns: String representation of the updated member Raises: GhostError: If the Ghost API request fails ValueError: If no fields to update are provided
Ghost MCP Server_update_newsletter

Update an existing newsletter.

Args: newsletter_id: ID of the newsletter to update (required) name: New newsletter name description: New newsletter description sender_name: Name shown in email clients sender_email: Email address newsletters are sent from sender_reply_to: Reply-to setting ("newsletter" or "support") status: Newsletter status ("active" or "archived") subscribe_on_signup: Whether to subscribe new members automatically sort_order: Order in lists header_image: URL of header image show_header_icon: Whether to show header icon show_header_title: Whether to show header title show_header_name: Whether to show header name title_font_category: Font category for titles title_alignment: Title alignment show_feature_image: Whether to show feature image body_font_category: Font category for body text footer_content: Custom footer content show_badge: Whether to show badge ctx: Optional context for logging Returns: Formatted string containing the updated newsletter details
Ghost MCP Server_update_offer

Update an existing offer in Ghost.

Args: offer_id: ID of the offer to update (required) name: New internal name for the offer (optional) code: New shortcode for the offer (optional) display_title: New name displayed in the offer window (optional) display_description: New text displayed in the offer window (optional) ctx: Optional context for logging Returns: String representation of the updated offer Raises: GhostError: If the Ghost API request fails ValueError: If no fields to update are provided
Ghost MCP Server_update_post

Update a blog post with new data.

Args: post_id: The ID of the post to update update_data: Dictionary containing the updated data and updated_at timestamp. Note: 'updated_at' is required. If 'lexical' is provided, it must be a valid JSON string. The lexical content must be a properly escaped JSON string in this format: { "root": { "children": [ { "children": [ { "detail": 0, "format": 0, "mode": "normal", "style": "", "text": "Your content here", "type": "text", "version": 1 } ], "direction": "ltr", "format": "", "indent": 0, "type": "paragraph", "version": 1 } ], "direction": "ltr", "format": "", "indent": 0, "type": "root", "version": 1 } } Example usage: update_data = { "post_id": "67abcffb7f82ac000179d76f", "update_data": { "updated_at": "2025-02-11T22:54:40.000Z", "lexical": "{"root":{"children":[{"children":[{"detail":0,"format":0,"mode":"normal","style":"","text":"Hello World","type":"text","version":1}],"direction":"ltr","format":"","indent":0,"type":"paragraph","version":1}],"direction":"ltr","format":"","indent":0,"type":"root","version":1}}" } } Updatable fields for a blog post: - slug: Unique URL slug for the post. - id: Identifier of the post. - uuid: Universally unique identifier for the post. - title: The title of the post. - lexical: JSON string representing the post content in lexical format. - html: HTML version of the post content. - comment_id: Identifier for the comment thread. - feature_image: URL to the post's feature image. - feature_image_alt: Alternate text for the feature image. - feature_image_caption: Caption for the feature image. - featured: Boolean flag indicating if the post is featured. - status: The publication status (e.g., published, draft). - visibility: Visibility setting (e.g., public, private). - created_at: Timestamp when the post was created. - updated_at: Timestamp when the post was last updated. - published_at: Timestamp when the post was published. - custom_excerpt: Custom excerpt text for the post. - codeinjection_head: Code to be injected into the head section. - codeinjection_foot: Code to be injected into the footer section. - custom_template: Custom template assigned to the post. - canonical_url: The canonical URL for SEO purposes. - tags: List of tag objects associated with the post. - authors: List of author objects for the post. - primary_author: The primary author object. - primary_tag: The primary tag object. - url: Direct URL link to the post. - excerpt: Short excerpt or summary of the post. - og_image: Open Graph image URL for social sharing. - og_title: Open Graph title for social sharing. - og_description: Open Graph description for social sharing. - twitter_image: Twitter-specific image URL. - twitter_title: Twitter-specific title. - twitter_description: Twitter-specific description. - meta_title: Meta title for SEO. - meta_description: Meta description for SEO. - email_only: Boolean flag indicating if the post is for email distribution only. - newsletter: Dictionary containing newsletter configuration details. - email: Dictionary containing email details related to the post. ctx: Optional context for logging Returns: Formatted string containing the updated post details Raises: GhostError: If there is an error accessing the Ghost API or missing required fields
Ghost MCP Server_update_tag

Update a tag with new data.

Args: tag_id: The ID of the tag to update update_data: Dictionary containing the updated data. Fields that can be updated: - name: The name of the tag - slug: URL slug for the tag - description: Description of the tag - feature_image: URL to the tag's feature image - visibility: Tag visibility ('public' or 'internal') - accent_color: CSS color hex value for the tag - meta_title: Meta title for SEO - meta_description: Meta description for SEO - canonical_url: The canonical URL - og_image: Open Graph image URL - og_title: Open Graph title - og_description: Open Graph description - twitter_image: Twitter card image URL - twitter_title: Twitter card title - twitter_description: Twitter card description - codeinjection_head: Code to inject in header - codeinjection_foot: Code to inject in footer Example: { "name": "Updated Name", "description": "Updated description" } ctx: Optional context for logging Returns: Formatted string containing the updated tag details Raises: GhostError: If there is an error accessing the Ghost API
Ghost MCP Server_update_tier

Update an existing tier in Ghost.

Args: tier_id: ID of the tier to update (required) name: New name for the tier description: New description for the tier monthly_price: New monthly price in cents (e.g. 500 for $5.00) yearly_price: New yearly price in cents (e.g. 5000 for $50.00) benefits: New list of benefits for the tier welcome_page_url: New URL for the welcome page visibility: New visibility setting ("public" or "none") currency: New currency for prices active: New active status ctx: Optional context for logging Returns: String representation of the updated tier Raises: GhostError: If the Ghost API request fails
Ghost MCP Server_update_user

Update an existing user in Ghost.

Args: user_id: ID of the user to update (required) name: User's full name (optional) slug: User's slug (optional) email: User's email address (optional) profile_image: URL for profile image (optional) cover_image: URL for cover image (optional) bio: User's bio (optional) website: User's website URL (optional) location: User's location (optional) facebook: Facebook username (optional) twitter: Twitter username (optional) meta_title: Meta title for SEO (optional) meta_description: Meta description for SEO (optional) accessibility: Accessibility settings (optional) comment_notifications: Enable comment notifications (optional) free_member_signup_notification: Enable free member signup notifications (optional) paid_subscription_started_notification: Enable paid subscription started notifications (optional) paid_subscription_canceled_notification: Enable paid subscription canceled notifications (optional) mention_notifications: Enable mention notifications (optional) milestone_notifications: Enable milestone notifications (optional) ctx: Optional context for logging Returns: String representation of the updated user Raises: GhostError: If the Ghost API request fails ValueError: If no fields to update are provided
Ghost MCP Server_update_webhook

Update an existing webhook in Ghost.

Args: webhook_id: ID of the webhook to update (required) event: New event to trigger the webhook (optional) target_url: New URL to send the webhook to (optional) name: New name of the webhook (optional) api_version: New API version for the webhook (optional) ctx: Optional context for logging Returns: String representation of the updated webhook Raises: GhostError: If the Ghost API request fails ValueError: If no fields to update are provided or if the event is invalid
Azure MCP Server_blob_container_create

Create a new Blob Storage container

Azure MCP Server_blob_container_list

List all Blob Storage containers

Azure MCP Server_blob_container_delete

Delete a Blob Storage container

Azure MCP Server_blob_upload

Upload a blob to Blob Storage

Azure MCP Server_cosmosdb_container_create

Create a new Cosmos DB container

Azure MCP Server_cosmosdb_container_describe

Get details about a Cosmos DB container

Azure MCP Server_cosmosdb_container_list

List all Cosmos DB containers in a database

Azure MCP Server_blob_delete

Delete a blob from Blob Storage

Azure MCP Server_blob_list

List blobs in a Blob Storage container

Azure MCP Server_blob_read

Read a blob's content from Blob Storage

Azure MCP Server_cosmosdb_container_delete

Delete a Cosmos DB container

Azure MCP Server_cosmosdb_item_create

Create a new item in a Cosmos DB container

Azure MCP Server_cosmosdb_item_read

Read an item from a Cosmos DB container

Azure MCP Server_cosmosdb_item_replace

Replace an item in a Cosmos DB container

Azure MCP Server_cosmosdb_item_delete

Delete an item from a Cosmos DB container

Azure MCP Server_cosmosdb_item_query

Query items in a Cosmos DB container using SQL

Linear MCP Server_read-resource

Read a Linear resource

Linear MCP Server_create-issue

Create a new Linear issue

Linear MCP Server_search-issues

Search Linear issues

gitlab mcp_create_or_update_file

Create or update a single file in a GitLab project

gitlab mcp_search_repositories

Search for GitLab projects

gitlab mcp_create_repository

Create a new GitLab project

gitlab mcp_get_file_contents

Get the contents of a file or directory from a GitLab project

gitlab mcp_push_files

Push multiple files to a GitLab project in a single commit

gitlab mcp_create_issue

Create a new issue in a GitLab project

gitlab mcp_create_merge_request

Create a new merge request in a GitLab project

gitlab mcp_fork_repository

Fork a GitLab project to your account or specified namespace

gitlab mcp_create_branch

Create a new branch in a GitLab project

gitlab mcp_get_merge_request

Get details of a merge request

gitlab mcp_get_merge_request_diffs

Get the changes/diffs of a merge request

gitlab mcp_update_merge_request

Update a merge request

gitlab mcp_create_note

Create a new note (comment) to an issue or merge request

confluence-mcp_execute_cql_search

Execute a CQL query on Confluence to search pages

confluence-mcp_get_page_content

Get the content of a Confluence page

confluence-mcp_create_page

Create a new Confluence page

confluence-mcp_update_page

Update an existing Confluence page

confluence-mcp_execute_jql_search

Execute a JQL query on Jira to search issues

confluence-mcp_create_jira_issue

Create a new Jira issue

confluence-mcp_update_jira_issue

Update an existing Jira issue

confluence-mcp_transition_jira_issue

Change the status of a Jira issue

confluence-mcp_get_board_sprints

Get all sprints from a Jira board

confluence-mcp_get_sprint_issues

Get all issues from a sprint

confluence-mcp_get_current_sprint

Get current active sprint from a board with its issues

confluence-mcp_get_epic_issues

Get all issues belonging to an epic

confluence-mcp_get_user_issues

Get all issues assigned to or reported by a specific user in a board

ClickUp MCP Server_get_task

Retrieve comprehensive details about a specific ClickUp task. Use this tool when you need in-depth information about a particular task, including its description, custom fields, attachments, and other metadata. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups.

ClickUp MCP Server_delete_task

Permanently remove a task from your ClickUp workspace. Use this tool with caution as deletion cannot be undone. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups. For safety, the task ID is required.

ClickUp MCP Server_get_folder

Retrieve details about a specific ClickUp folder including its name, status, and other metadata. Before calling, check if you already have the necessary folder ID from previous responses in the conversation history, as this avoids redundant lookups. Helps you understand folder structure before creating or updating lists.

ClickUp MCP Server_update_folder

Modify an existing ClickUp folder's properties, such as name or status settings. Before calling, check if you already have the necessary folder ID from previous responses in the conversation history, as this avoids redundant lookups. Use when reorganizing or renaming workspace elements.

ClickUp MCP Server_delete_folder

Permanently remove a folder from your ClickUp workspace. Use with caution as deletion cannot be undone and will remove all lists and tasks within the folder. Before calling, check if you already have the necessary folder ID from previous responses in the conversation history, as this avoids redundant lookups.

ClickUp MCP Server_get_list

Retrieve details about a specific ClickUp list including its name, content, status options, and other metadata. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. Useful to understand list structure before creating or updating tasks.

ClickUp MCP Server_update_list

Modify an existing ClickUp list's properties, such as name, content, or status options. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. Use when reorganizing or renaming workspace elements.

ClickUp MCP Server_delete_list

Permanently remove a list from your ClickUp workspace. Use with caution as deletion cannot be undone and will remove all tasks within the list. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups.

ClickUp MCP Server_get_workspace_hierarchy

Retrieve the complete ClickUp workspace hierarchy, including all spaces, folders, and lists with their IDs, names, and hierarchical paths. Call this tool only when you need to discover the workspace structure and don't already have this information from recent context. Avoid using for repeated lookups of the same information.

ClickUp MCP Server_create_task

Create a single task in a ClickUp list. Use this tool for individual task creation only. For multiple tasks, use create_bulk_tasks instead. Before calling this tool, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. When creating a task, you must provide either a listId or listName.

ClickUp MCP Server_create_bulk_tasks

Create multiple tasks in a ClickUp list simultaneously. Use this tool when you need to add several related tasks in one operation. Before calling, check if you already have the necessary list ID from previous responses in the conversation, as this avoids redundant lookups. More efficient than creating tasks one by one for batch operations.

ClickUp MCP Server_create_list

Create a new list directly in a ClickUp space. Use this tool when you need a top-level list not nested inside a folder. Before calling, check if you already have the necessary space ID from previous responses in the conversation, as this avoids redundant lookups. For creating lists inside folders, use create_list_in_folder instead.

ClickUp MCP Server_create_folder

Create a new folder in a ClickUp space for organizing related lists. Use this tool when you need to group multiple lists together. Before calling, check if you already have the necessary space ID from previous responses in the conversation, as this avoids redundant lookups. After creating a folder, you can add lists to it using create_list_in_folder.

ClickUp MCP Server_create_list_in_folder

Create a new list within a ClickUp folder. Use this tool when you need to add a list to an existing folder structure. Before calling, check if you already have the necessary folder ID and space ID from previous responses in the conversation, as this avoids redundant lookups. For top-level lists not in folders, use create_list instead.

ClickUp MCP Server_move_task

Move an existing task from its current list to a different list. Use this tool when you need to relocate a task within your workspace hierarchy. Before calling, check if you already have the necessary task ID and list ID from previous responses in the conversation, as this avoids redundant lookups. Task statuses may be reset if the destination list uses different status options.

ClickUp MCP Server_duplicate_task

Create a copy of an existing task in the same or different list. Use this tool when you need to replicate a task's content and properties. Before calling, check if you already have the necessary task ID and list ID from previous responses in the conversation, as this avoids redundant lookups. The duplicate will preserve name, description, priority, and other attributes from the original task.

ClickUp MCP Server_update_task

Modify the properties of an existing task. Use this tool when you need to change a task's name, description, status, priority, or due date. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups. Only the fields you specify will be updated; other fields will remain unchanged.

ClickUp MCP Server_get_tasks

Retrieve tasks from a ClickUp list with optional filtering capabilities. Use this tool when you need to see existing tasks or analyze your current workload. Before calling, check if you already have the necessary list ID from previous responses in the conversation, as this avoids redundant lookups. Results can be filtered by status, assignees, dates, and more.

Feature-Discussion MCP Server_begin_feature_discussion

Start a new feature discussion

Feature-Discussion MCP Server_provide_feature_input

Provide information for the current feature discussion prompt

YouTube MCP Server_download_youtube_srt

Download YouTube subtitles in SRT format so that LLM can read them.

YouTube MCP Server_download_youtube_video

Download YouTube video to the user's default Downloads folder (usually ~/Downloads).

MCP Playwright CDP_playwright_navigate

Navigate to a URL

MCP Playwright CDP_playwright_screenshot

Take a screenshot of the current page or a specific element

MCP Playwright CDP_playwright_click

Click an element on the page

MCP Playwright CDP_playwright_fill

fill out an input field

MCP Playwright CDP_playwright_select

Select an element on the page with Select tag

MCP Playwright CDP_playwright_hover

Hover an element on the page

MCP Playwright CDP_playwright_evaluate

Execute JavaScript in the browser console

MCP Playwright CDP_playwright_get

Perform an HTTP GET request

MCP Playwright CDP_playwright_post

Perform an HTTP POST request

MCP Playwright CDP_playwright_put

Perform an HTTP PUT request

MCP Playwright CDP_playwright_patch

Perform an HTTP PATCH request

MCP Playwright CDP_playwright_delete

Perform an HTTP DELETE request

File Edit Check MCP Server_checked_read_file

Read a file and mark it as read for future editing

File Edit Check MCP Server_checked_write_to_file

Write to a file, requiring it to have been read first if it exists

File Edit Check MCP Server_checked_apply_diff

Apply a diff to a file, requiring it to have been read first

File Edit Check MCP Server_list_my_tools

List the tools registered in this server

MCP Image Placeholder Server_image_placeholder
Generate a placeholder image based on a provider, width, and height. Use this tool to generate a placeholder image for testing or development purposes. Args: provider: The provider to use for the image, must be either `placehold` or `lorem-picsum`. width: The width of the image, must be a positive integer between 1 and 10000. height: The height of the image, must be a positive integer between 1 and 10000.
Puppeteer MCP Server_puppeteer_connect_active_tab

Connect to an existing Chrome instance with remote debugging enabled

Puppeteer MCP Server_puppeteer_navigate

Navigate to a URL

Puppeteer MCP Server_puppeteer_screenshot

Take a screenshot of the current page or a specific element

Puppeteer MCP Server_puppeteer_click

Click an element on the page

Puppeteer MCP Server_puppeteer_fill

Fill out an input field

Puppeteer MCP Server_puppeteer_select

Select an element on the page with Select tag

Puppeteer MCP Server_puppeteer_hover

Hover an element on the page

Puppeteer MCP Server_puppeteer_evaluate

Execute JavaScript in the browser console

MCP Live Events Server_get_upcoming_events

Get upcoming music events for a city.

Args: city: City in which to search for events. start_dttm_str: Start date/time in ISO 8601 format (YYYY-MM-DDTHH). Example: 2025-02-08T00:00:00Z end_dttm_str: Start date/time in ISO 8601 format (YYYY-MM-DDTHH). Example: 2025-02-10T00:00:00Z keyword: Any optional keywords to help filter search results.

MCP Server Template_architect

MCP server for the LLM Architect tool. Exposes resource "/llm-architect/chat" accepting POST requests with a prompt and optional conversationId, and interacts with the llm chat CLI to provide architectural design feedback while maintaining conversation context.

Perplexity AI MCP Server_perplexity_search

Search using Perplexity AI's models with context-aware responses and citations

Decent-Sampler Drums MCP Server_configure_drum_controls

Configure global pitch and envelope controls for each drum type.

This tool will:

  • Add per-drum pitch controls with customizable ranges
  • Configure ADSR envelope settings for natural decay control
  • Generate proper XML structure for global drum controls

Error Handling:

  • Validates pitch range values (min/max must be valid numbers)
  • Ensures envelope times are positive values
  • Verifies curve values are within -100 to 100 range
  • Returns detailed error messages for invalid configurations

Success Response: Returns XML structure containing:

  • Global controls for each drum type
  • MIDI CC mappings for real-time control
  • Properly formatted parameter bindings
Decent-Sampler Drums MCP Server_configure_round_robin

Configure round robin sample playback for a set of samples.

This tool will:

  • Validate sequence positions
  • Verify sample files exist
  • Generate proper XML structure for round robin playback

Error Handling:

  • Checks if sample files exist at specified paths
  • Validates sequence positions are unique and sequential
  • Ensures mode is one of: round_robin, random, true_random, always
  • Returns specific error messages for missing files or invalid sequences

Success Response: Returns XML structure with:

  • Configured playback mode
  • Sample sequence assignments
  • Proper group organization for round robin playback
Decent-Sampler Drums MCP Server_analyze_wav_samples

Analyze WAV files to detect common issues in drum kit samples.

This tool checks for:

  • Non-standard WAV headers that may cause playback issues
  • Metadata inconsistencies that could affect multi-mic setups
  • Sample rate and bit depth compatibility
  • Channel configuration issues
  • File size and format validation

Error Handling:

  • Reports detailed header format issues
  • Identifies metadata inconsistencies between related samples
  • Flags potential playback compatibility problems
  • Returns specific error messages for each issue type

Success Response: Returns detailed analysis including:

  • WAV header information
  • Sample metadata
  • Potential compatibility issues
  • Recommendations for fixes

IMPORTANT: Always use absolute paths (e.g., 'C:/Users/username/Documents/Samples/kick.wav') rather than relative paths.

Decent-Sampler Drums MCP Server_configure_mic_routing

Configure multi-mic routing with MIDI controls for drum samples.

This tool will:

  • Set up individual volume controls for each mic position (close, OH L/R, room L/R)
  • Route each mic to its own auxiliary output for DAW mixing
  • Configure MIDI CC mappings for mic volumes
  • Generate proper XML structure for DecentSampler

Error Handling:

  • Validates mic position assignments
  • Checks for duplicate MIDI CC assignments
  • Ensures valid output routing targets
  • Verifies bus indices are unique and valid
  • Returns specific errors for routing conflicts

Success Response: Returns XML structure containing:

  • Configured mic bus routing
  • Volume control mappings
  • MIDI CC assignments
  • Complete routing matrix for all samples
Decent-Sampler Drums MCP Server_generate_drum_groups

Generate DecentSampler <groups> XML for drum kits.

This tool supports two configuration types:

BasicDrumKitConfig:

  • For simple presets with minimal features
  • No UI controls, effects, or routing
  • Only supports basic sample mapping and optional velocity layers
  • Recommended for straightforward drum kits

AdvancedDrumKitConfig:

  • For complex setups combining multiple features
  • Supports UI controls, effects, and routing
  • Integrates with other tools (configure_drum_controls, configure_mic_routing, etc.)
  • Use when you need advanced features like round robin or multi-mic setups

Best Practices:

  • IMPORTANT: Always use absolute paths (e.g., 'C:/Users/username/Documents/Samples/kick.wav')
  • Group all samples for a drum piece into a single group
  • When using multiple mic positions, include them all in the same group
  • Use velocity layers within a group to control dynamics

Error Handling:

  • Validates all sample paths exist
  • Checks for valid MIDI note numbers
  • Ensures velocity layers don't overlap
  • Verifies muting group configurations
  • Returns specific errors for any invalid settings

Example Configurations:

  1. Basic Configuration (simple drum kit): { "globalSettings": { "velocityLayers": [ { "low": 1, "high": 42, "name": "soft" }, { "low": 43, "high": 85, "name": "medium" }, { "low": 86, "high": 127, "name": "hard" } ] }, "drumPieces": [{ "name": "Kick", "rootNote": 36, "samples": [ {"path": "C:/Samples/Kick_Soft.wav"}, {"path": "C:/Samples/Kick_Medium.wav"}, {"path": "C:/Samples/Kick_Hard.wav"} ] }] }
  2. Advanced Configuration (multi-mic kit with controls): { "globalSettings": { "velocityLayers": [ { "low": 1, "high": 127, "name": "full" } ], "drumControls": { "kick": { "pitch": { "default": 0, "min": -12, "max": 12 }, "envelope": { "attack": 0.001, "decay": 0.5, "sustain": 0, "release": 0.1 } } }, "micBuses": [ { "name": "Close Mic", "outputTarget": "MAIN_OUTPUT", "volume": { "default": 0, "midiCC": 20 } } ] }, "drumPieces": [{ "name": "Kick", "rootNote": 36, "samples": [ { "path": "C:/Samples/Kick_Close.wav", "micConfig": { "position": "close", "busIndex": 0 } } ], "muting": { "tags": ["kick"], "silencedByTags": [] } }] }

Success Response: Returns complete XML structure with:

  • Organized sample groups
  • Velocity layer mappings
  • Muting group configurations
  • All sample references and settings
  • Advanced features when using AdvancedDrumKitConfig
Flutter Tools MCP Server_get_diagnostics

Get Flutter/Dart diagnostics for a file

Flutter Tools MCP Server_apply_fixes

Apply Dart fix suggestions to a file

YouTube Transcript MCP Server_get_transcript

Retrieves the transcript of a YouTube video.

MCP Source Relation Server_get_source_relation

Analyze dependencies between source files

Rami Levy MCP Server_add_to_cart

Add one or more items to the shopping cart

Rami Levy MCP Server_remove_from_cart

Remove items from the cart by providing an updated list of items to keep

Rami Levy MCP Server_update_quantity

Update the quantity of an item in the cart

Rami Levy MCP Server_search_items

Search for items in the Rami Levy catalog

Research MCP Server_get_survey_summaries

Get survey summaries

Research MCP Server_get_survey_summary

Get survey summary

Research MCP Server_get_property_definition

Get property definition for survey summary

Research MCP Server_update_survey_summary_property
Update survey summary property To know definition of properties, use `get_property_definition` tool in advance.
Research MCP Server_update_survey_summary_block-
Research MCP Server_create_new_survey_summary-
MCP Server Pagespeed_analyze_pagespeed

Analyzes a webpage using Google PageSpeed Insights API

MCP-MySQL Server_connect_db

Connect to MySQL database using URL or config

MCP-MySQL Server_query

Execute a SELECT query

MCP-MySQL Server_execute

Execute an INSERT, UPDATE, or DELETE query

MCP-MySQL Server_list_tables

List all tables in the database

MCP-MySQL Server_describe_table

Get table structure

MCP-MySQL Server_create_table

Create a new table in the database

MCP-MySQL Server_add_column

Add a new column to existing table

drupal-modules-mcp MCP Server_get_module_info

Get information about a Drupal module from drupal.org

mcp-server-asana_asana_create_task

Create a new task in a project

mcp-server-asana_asana_get_task_stories

Get comments and stories for a specific task

mcp-server-asana_asana_update_task

Update an existing task's details

mcp-server-asana_asana_get_project

Get detailed information about a specific project

mcp-server-asana_asana_get_project_task_counts

Get the number of tasks in a project

mcp-server-asana_asana_get_project_sections

Get sections in a project

mcp-server-asana_asana_create_task_story

Create a comment or story on a task

mcp-server-asana_asana_add_task_dependencies

Set dependencies for a task

mcp-server-asana_asana_add_task_dependents

Set dependents for a task (tasks that depend on this task)

mcp-server-asana_asana_create_subtask

Create a new subtask for an existing task

mcp-server-asana_asana_get_multiple_tasks_by_gid

Get detailed information about multiple tasks by their GIDs (maximum 25 tasks)

mcp-server-asana_asana_get_project_status

Get a project status update

mcp-server-asana_asana_get_project_statuses

Get all status updates for a project

mcp-server-asana_asana_create_project_status

Create a new status update for a project

mcp-server-asana_asana_delete_project_status

Delete a project status update

mcp-server-asana_asana_set_parent_for_task

Set the parent of a task and position the subtask within the other subtasks of that parent

mcp-server-asana_asana_get_tasks_for_tag

Get tasks for a specific tag

mcp-server-asana_asana_get_tags_for_workspace

Get tags in a workspace

mcp-server-asana_asana_list_workspaces

List all available workspaces in Asana

mcp-server-asana_asana_search_projects

Search for projects in Asana using name pattern matching

mcp-server-asana_asana_search_tasks

Search tasks in a workspace with advanced filtering options

mcp-server-asana_asana_get_task

Get detailed information about a specific task

MCP Source Tree Server_get_src_tree
Generate a file tree for the specified directory, filtering files based on .gitignore. Traverses the filesystem and generates a JSON-formatted tree structure that preserves hierarchy.
Code Analysis MCP Server_initialize_repository

Initialize the repository path for future code analysis operations.

Args: path: Path to the repository root directory that contains the code to analyze
Code Analysis MCP Server_get_repo_info

Get information about the currently initialized code repository.

Code Analysis MCP Server_get_repo_structure

Get the structure of files and directories in the repository.

Args: sub_path: Optional subdirectory path relative to repository root depth: Optional maximum depth to traverse (default is 3)
Code Analysis MCP Server_read_file

Read and display the contents of a file from the repository.

Args: file_path: Path to the file relative to repository root
MCP Server Firecrawl_crawl

Crawls a website starting from a base URL

MCP Server Firecrawl_map

Maps a website's structure

MCP Server Firecrawl_extract

Extracts structured data from URLs

MCP Server Firecrawl_scrape_url

Scrape content from a URL using Firecrawl API

MCP Server Firecrawl_search_content

Search content using Firecrawl API

Datetime MCP Server_add-note

Add a new note

Datetime MCP Server_get-current-time

Get the current time in various formats

Datetime MCP Server_format-date

Format a date string according to the specified format

MCP Async Server_process_task

Start processing a task asynchronously.

MCP Async Server_check_task_status

Check the status of an async task

Drupal-Modules-MCP MCP Server_get_command_info

Get detailed information about a specific Drush command

MCP Server Template_example-tool

An example tool that processes input data

Academic Paper Search MCP Server_search_papers

Search for papers across multiple sources.

args: query: the search query limit: the maximum number of results to return (default 10)
Academic Paper Search MCP Server_fetch_paper_details

Get detailed information about a specific paper.

Args: paper_id: Paper identifier (DOI for Crossref, paper ID for Semantic Scholar) source: Source database ("semantic_scholar" or "crossref")
Academic Paper Search MCP Server_search_by_topic

Search for papers by topic with optional date range.

Note: Query length is limited to 300 characters. Longer queries will be automatically truncated. Args: topic (str): Search query (max 300 chars) year_start (int, optional): Start year for date range year_end (int, optional): End year for date range limit (int, optional): Maximum number of results to return (default 10) Returns: str: Formatted search results or error message
Web Accessibility MCP Server_simulate_colorblind

Simulate how a webpage looks for colorblind users

Web Accessibility MCP Server_check_accessibility

Check web accessibility of a given URL using axe-core

Web3 MCP Server_getSlot

Get the current slot

Web3 MCP Server_getBalance

Get balance for a Solana address

Web3 MCP Server_getKeypairInfo

Get information about a keypair from its secret key

Web3 MCP Server_getAccountInfo

Get detailed account information for a Solana address

Web3 MCP Server_transfer

Transfer SOL from your keypair to another address

Web3 MCP Server_getSplTokenBalances

Get SPL token balances for a Solana address

Web3 MCP Server_getSplTokenInfo

Get detailed information about a specific SPL token account

Web3 MCP Server_getEvmBalance

Get native token balance for an EVM address on any supported network

Web3 MCP Server_getEvmTokenBalance

Get ERC-20 token balance for an address on any supported EVM network

Web3 MCP Server_getGasPrice

Get current gas price for any supported EVM network

MCP Server Reddit_get_subreddit_hot_posts

Get hot posts from a specific subreddit

MCP Server Reddit_get_frontpage_posts

Get hot posts from Reddit frontpage

MCP Server Reddit_get_subreddit_info

Get information about a subreddit

MCP Server Reddit_get_subreddit_new_posts

Get new posts from a specific subreddit

MCP Server Reddit_get_subreddit_top_posts

Get top posts from a specific subreddit

MCP Server Reddit_get_subreddit_rising_posts

Get rising posts from a specific subreddit

MCP Server Reddit_get_post_content

Get detailed content of a specific post

MCP Server Reddit_get_post_comments

Get comments from a post

MCP Code Executor_execute_code

Execute Python code in the specified conda environment

Safari Screenshot MCP Server_take_screenshot

Take a screenshot of a webpage using Safari on macOS

ClickUp MCP Server_clickup_create_task

Create a new task in ClickUp workspace

ClickUp MCP Server_clickup_update_task

Update an existing task in ClickUp

ClickUp MCP Server_clickup_get_teams

Get all teams accessible to the authenticated user

ClickUp MCP Server_clickup_get_lists

Get all lists in a specific folder

ClickUp MCP Server_clickup_create_board

Create a new board in a ClickUp space

MCP Architect_analyze_architecture

Perform a comprehensive analysis of a software architecture

MCP Architect_evaluate_architecture

Evaluate an architecture design against specific criteria

MCP Architect_generate_architecture

Generate a software architecture design based on requirements

Bitcoin MCP Server_generate_key

Generate a new Bitcoin key pair and address

Bitcoin MCP Server_validate_address

Validate a Bitcoin address

Bitcoin MCP Server_decode_tx

Decode a Bitcoin transaction

Bitcoin MCP Server_get_latest_block

Get the latest block

Bitcoin MCP Server_get_transaction

Get transaction details

MCP Access Server_get-webpage-markdown

Parses a web page into Markdown and returns it

MCP Access Server_get-pdf-content

Text parsing and return of PDF content

MCP Access Server_command-execute

Executes a command in the allowed list: ls / mkdir / cd / npm / npx / node / git / rm

Perplexity MCP Server_search

Search the web using Perplexity AI

Git Forensics MCP_get_branch_overview

Get high-level overview of branch states and relationships

Git Forensics MCP_analyze_time_period

Analyze detailed development activity in a specific time period

Git Forensics MCP_analyze_file_changes

Analyze changes to specific files across branches

Git Forensics MCP_get_merge_recommendations

Get detailed merge strategy recommendations

Wegene Assistant MCP Server_wegene-oauth

Authorizing a user's account using WeGene Open API with oAuth2 protocol and retrieve a valid access token for further use

Wegene Assistant MCP Server_wegene-get-profiles

Retrieve all the profiles under the current account

Wegene Assistant MCP Server_wegene-get-report-info

Get all available report information

Wegene Assistant MCP Server_wegene-get-report

Get a specific genetic test report from a profile

GitHub MCP Server Plus_create_or_update_file

Create or update a single file in a GitHub repository

GitHub MCP Server Plus_search_repositories

Search for GitHub repositories

GitHub MCP Server Plus_create_repository

Create a new GitHub repository in your account

GitHub MCP Server Plus_get_file_contents

Get the contents of a file or directory from a GitHub repository

GitHub MCP Server Plus_push_files_content

Push multiple files with direct content to a GitHub repository in a single commit

GitHub MCP Server Plus_push_files_from_path

Push multiple files from filesystem paths to a GitHub repository in a single commit

GitHub MCP Server Plus_create_issue

Create a new issue in a GitHub repository

GitHub MCP Server Plus_create_pull_request

Create a new pull request in a GitHub repository

GitHub MCP Server Plus_fork_repository

Fork a GitHub repository to your account or specified organization

GitHub MCP Server Plus_create_branch

Create a new branch in a GitHub repository

GitHub MCP Server Plus_list_commits

Get list of commits of a branch in a GitHub repository

GitHub MCP Server Plus_list_issues

List issues in a GitHub repository with filtering options

GitHub MCP Server Plus_update_issue

Update an existing issue in a GitHub repository

GitHub MCP Server Plus_add_issue_comment

Add a comment to an existing issue

GitHub MCP Server Plus_search_code

Search for code across GitHub repositories

GitHub MCP Server Plus_search_issues

Search for issues and pull requests across GitHub repositories

GitHub MCP Server Plus_search_users

Search for users on GitHub

GitHub MCP Server Plus_get_issue

Get details of a specific issue in a GitHub repository.

Deepseek R1 MCP Server_deepseek_r1

Generate text using DeepSeek R1 model

Daipendency_dependency_docs_getter

Extract all the documentation and public API for a dependency of a local project

browser-use MCP server_add-note

Add a new note

MCP Ollama Server_list_models

List all downloaded Ollama models

MCP Ollama Server_show_model

Get detailed information about a specific model

Args: name: Name of the model to show information about
MCP Ollama Server_ask_model

Ask a question to a specific Ollama model

Args: model: Name of the model to use (e.g., 'llama2') question: The question to ask the model
MCP Ollama Link_query-ollama

Query the Ollama model with performance tracking

Memory Cache Server_store_data

Store data in the cache with optional TTL

Memory Cache Server_retrieve_data

Retrieve data from the cache

Memory Cache Server_clear_cache

Clear specific or all cache entries

Memory Cache Server_get_cache_stats

Get cache statistics

mcp-registry-server_retrieve_mcps

Performs retrieval from our registry of MCPs.

Qwen Max MCP Server_qwen_max

Generate text using Qwen Max model

Weaviate MCP Server_mcp_fetch

Fetches a website and returns its content

Weaviate MCP Server_mood

Ask the server about its mood - it's always happy!

LumbreTravel MCP Server_delete_hotel

Eliminar un hotel en LumbreTravel.

LumbreTravel MCP Server_reactivate_hotel

Reactivar un hotel en LumbreTravel

LumbreTravel MCP Server_get_hotel_by_name

Buscar hoteles por su nombre, retorna la lista de hoteles encontrados.

LumbreTravel MCP Server_get_program

Obtiene un programa de viajes de LumbreTravel por ID

LumbreTravel MCP Server_get_programs_by_name

Busca programas de viajes de LumbreTravel por nombre

LumbreTravel MCP Server_get_programs_by_date_range

Obtiene programas de viajes de LumbreTravel por rango de fechas

LumbreTravel MCP Server_daily_activities

Obtiene las actividades diarias en LumbreTravel. Retorna un objeto JSON con un array de actividaes en la propiedad 'activities' con las actividades del da buscado. En la propiedad 'monthlyTotals' se encuentra el total de actividades de cada da del mes

LumbreTravel MCP Server_season_summary

Obtiene un resumen de pasajeros a lo largo de una temporada. Retorna un objeto JSON que contiene un array por cada ao de la temporada. En cada item del array la propiedad 'yearTotal' contiene el total de pasajeros del ao. En la propiedad 'agencies' se encuentra un resumen por mes de los pasajeros del ao asociados a cada agencia. Y en el array 'monthlyTotals' se encuentra el total de pasajeros de cada mes. Esta tool es muy til para obtener el total de pasajeros de una temporada y ver como se distribuye por agencias. Siempre que se quiera obtener informacin estadistica de pasajeros se debe usar esta tool. Al ser una solucion para agencias de viaje los analisis estadsticos pueden ser muy tiles para tomar decisiones de negocio. Se pueden usar estos datos para armar graficos e indicadores. Ademas es normal que las fechas de analisis sean en el futuro.

LumbreTravel MCP Server_create_program

Crea un nuevo programa de viajes en LumbreTravel. Antes de crear un nuevo programa se debe preguntar al si quiere que primero se busque el programa a ver si existe. Si no se especifica la fecha de inicio o fin del programa, no la asumas, pide al usuario que la especifique. Si no se especifica el ID de la agencia, pide al usuario que la especifique.

LumbreTravel MCP Server_update_program

Actualiza un programa de viajes en LumbreTravel

LumbreTravel MCP Server_delete_program

Elimina un programa de viajes en LumbreTravel

LumbreTravel MCP Server_reactivate_program

Reactiva un programa de viajes en LumbreTravel

LumbreTravel MCP Server_list_agencies

Obtiene todas las agencias disponibles para asociar a un programa de viajes en LumbreTravel

LumbreTravel MCP Server_list_services

Obtiene todos los servicios disponibles para asociar a una actividad en un programa de viajes en LumbreTravel

LumbreTravel MCP Server_list_hotels

Obtiene todos los hoteles disponibles para asociar a una actividad en un programa de viajes en LumbreTravel

LumbreTravel MCP Server_list_leaders

Obtiene todos los guas disponibles para asociar a una actividad en un programa de viajes en LumbreTravel

LumbreTravel MCP Server_list_vehicles

Obtiene todos los vehculos disponibles para asociar a una actividad en un programa de viajes en LumbreTravel

LumbreTravel MCP Server_list_includes

Obtiene todos los incluye o extras disponibles para asociar a una actividad en un programa de viajes en LumbreTravel

LumbreTravel MCP Server_list_service_languages

Obtiene todos los idiomas en los que se pueden prestar los servicios para asociar a una actividad en un programa de viajes en LumbreTravel. Estos idiomas solo se pueden usar para asociar a un servicio. Estos idiomas solo pueden ser asociados a un servicio

LumbreTravel MCP Server_list_providers

Obtiene todos los proveedores disponibles en LumbreTravel

LumbreTravel MCP Server_get_passengers_by_fullname

Obtiene pasajeros por nombre completo en LumbreTravel

LumbreTravel MCP Server_get_passengers_by_email

Obtiene pasajeros por email en LumbreTravel

LumbreTravel MCP Server_reactivate_agency

Reactivar una agencia en LumbreTravel

LumbreTravel MCP Server_create_passengers

Crea pasajeros en LumbreTravel, usa esta tool cuando el asistente recibe los datos de los pasajeros como parte del pedido del usuario

LumbreTravel MCP Server_update_passengers

Edita pasajeros en LumbreTravel teniendo en cuenta que se conoce el ID del pasajero. Si el id no se conoce entonces se puede usar la tool get_passengers_by_fullname o get_passengers_by_email para obtener el id del pasajero. Retorna el pasajero editado.

LumbreTravel MCP Server_delete_passengers

Elimina pasajeros en LumbreTravel teniendo en cuenta que se conoce el ID del pasajero. Si el id no se conoce entonces se puede usar la tool get_passengers_by_fullname o get_passengers_by_email para obtener el id del pasajero. Retorna el pasajero eliminado.

LumbreTravel MCP Server_delete_passenger

Elimina un pasajero en LumbreTravel teniendo en cuenta que se conoce el ID del pasajero. Si el id no se conoce entonces se puede usar la tool get_passengers_by_fullname o get_passengers_by_email para obtener el id del pasajero. Retorna el pasajero eliminado.

LumbreTravel MCP Server_reactivate_passenger

Reactiva un pasajero en LumbreTravel teniendo en cuenta que se conoce el ID del pasajero. Si el id no se conoce entonces se puede usar la tool get_passengers_by_fullname o get_passengers_by_email para obtener el id del pasajero. Retorna el pasajero reactivado.

LumbreTravel MCP Server_add_passengers_to_program

Agrega pasajeros a un programa en LumbreTravel. Es importante que los pasajeros ya existan en LumbreTravel, si no existen se puede usar la tool create_passengers para crearlos. O si existen se puede usar la tool get_passengers_by_fullname o get_passengers_by_email para obtener el id de cada pasajero.

LumbreTravel MCP Server_get_agency_by_name

Obtener una agencia por nombre, retorna la agencia encontrada.

LumbreTravel MCP Server_create_hotel

Crear un hotel en LumbreTravel, retorna el hotel creado. Antes de crear un nuevo hotel se debe preguntar al si quiere que primero se busque el hotel a ver si existe.

LumbreTravel MCP Server_update_hotel

Actualizar un hotel en LumbreTravel, retorna el hotel actualizado.

LumbreTravel MCP Server_add_activities

Crea actividades asociadas a un programa en LumbreTravel. Es importante que los servicios, hoteles, guas, vehculos y extras ya existan en LumbreTravel, si no existen se puede usar las tools create_service, create_hotel, create_leader, create_vehicle y create_include para crearlos. O si existen se puede usar las tools get_services_by_name, get_hotel_by_name, get_leader_by_name, get_vehicle_by_name y get_include_by_name para obtener el id de cada servicio, hotel, gua, vehculo y extra.

LumbreTravel MCP Server_update_activities

Actualizar mltiples actividades asociadas a un programa

LumbreTravel MCP Server_delete_activities

Eliminar mltiples actividades asociadas a un programa

LumbreTravel MCP Server_create_agency

Crear una agencia en LumbreTravel, retorna la agencia creada. Antes de crear una nueva agencia se debe preguntar al si quiere que primero se busque la agencia a ver si existe. La agencia creada se puede usar para asociarle programas en LumbreTravel. Es importante que el proveedor de la agencia tenga un ID de proveedor en LumbreTravel. Si el proveedor no tiene un ID de proveedor en LumbreTravel, se puede usar la tool create_provider para crear un proveedor y luego usar el ID de proveedor creado para crear la agencia. Si el proveedor ya tiene un ID de proveedor en LumbreTravel, se puede usar el ID de proveedor para crear la agencia. Para buscar un proveedor por nombre se puede usar la tool get_provider_by_name.

LumbreTravel MCP Server_update_agency

Actualizar una agencia en LumbreTravel, retorna la agencia actualizada. La agencia actualizada se puede usar para asociarle programas en LumbreTravel. Es importante que el proveedor de la agencia tenga un ID de proveedor en LumbreTravel. Si el proveedor no tiene un ID de proveedor en LumbreTravel, se puede usar la tool create_provider para crear un proveedor y luego usar el ID de proveedor creado para crear la agencia. Si el proveedor ya tiene un ID de proveedor en LumbreTravel, se puede usar el ID de proveedor para crear la agencia. Para buscar un proveedor por nombre se puede usar la tool get_provider_by_name.

LumbreTravel MCP Server_delete_agency

Eliminar una agencia en LumbreTravel. La agencia eliminada no se puede usar para asociarle programas en LumbreTravel.

LumbreTravel MCP Server_create_leader

Crear un gua en LumbreTravel. Antes de crear un nuevo gua se debe preguntar al si quiere que primero se busque el gua a ver si existe.

LumbreTravel MCP Server_update_leader

Actualizar un gua en LumbreTravel, retorna el gua actualizado. Es importante que el gua ya exista en LumbreTravel, si no existe se puede usar la tool create_leader para crearlo. O si existe se puede usar la tool get_leader_by_name para obtener el id del gua.

LumbreTravel MCP Server_delete_leader

Eliminar un gua en LumbreTravel

LumbreTravel MCP Server_reactivate_leader

Reactivar un gua en LumbreTravel

LumbreTravel MCP Server_get_leader_by_name

Buscar guas por su nombre, retorna la lista de guas encontrados.

LumbreTravel MCP Server_create_vehicle

Crear un vehculo en LumbreTravel. Antes de crear un nuevo vehculo se debe preguntar al si quiere que primero se busque el vehculo a ver si existe.

LumbreTravel MCP Server_update_vehicle

Actualizar un vehculo en LumbreTravel, retorna el vehculo actualizado. Es importante que el vehculo ya exista en LumbreTravel, si no existe se puede usar la tool create_vehicle para crearlo. O si existe se puede usar la tool get_vehicle_by_name para obtener el id del vehculo.

LumbreTravel MCP Server_delete_vehicle

Eliminar un vehculo en LumbreTravel

LumbreTravel MCP Server_reactivate_vehicle

Reactivar un vehculo en LumbreTravel

LumbreTravel MCP Server_get_vehicle_by_name

Buscar vehculos por su nombre, retorna la lista de vehculos encontrados.

LumbreTravel MCP Server_create_include

Crear un extra o includo en LumbreTravel. Antes de crear un nuevo extra o includo se debe preguntar al si quiere que primero se busque el extra o includo a ver si existe.

LumbreTravel MCP Server_update_include

Actualizar un extra o includo en LumbreTravel, retorna el extra o includo actualizado. Es importante que el extra o includo ya exista en LumbreTravel, si no existe se puede usar la tool create_include para crearlo. O si existe se puede usar la tool get_include_by_name para obtener el id del extra o includo.

LumbreTravel MCP Server_delete_include

Eliminar un extra o includo en LumbreTravel

LumbreTravel MCP Server_reactivate_include

Reactivar un extra o includo en LumbreTravel

LumbreTravel MCP Server_get_includes_by_name

Buscar extras o includos por su nombre, retorna la lista de extras o includos encontrados.

LumbreTravel MCP Server_create_service_language

Crear un idioma de servicio en LumbreTravel. Antes de crear un nuevo idioma de servicio se debe preguntar al si quiere que primero se busque el idioma de servicio a ver si existe. Este idioma solo se puede usar para asociar a un servicio.

LumbreTravel MCP Server_update_service_language

Actualizar un idioma de servicio en LumbreTravel, retorna el idioma de servicio actualizado. Es importante que el idioma de servicio ya exista en LumbreTravel, si no existe se puede usar la tool create_service_language para crearlo. O si existe se puede usar la tool get_service_language_by_name para obtener el id del idioma de servicio. Este idioma solo se puede usar para asociar a un servicio.

LumbreTravel MCP Server_delete_service_language

Eliminar un idioma de servicio en LumbreTravel

LumbreTravel MCP Server_reactivate_service_language

Reactivar un idioma de servicio en LumbreTravel

LumbreTravel MCP Server_get_service_language_by_name

Buscar idiomas de servicio por su nombre, retorna la lista de idiomas de servicio encontrados.

LumbreTravel MCP Server_create_provider

Crear un proveedor en LumbreTravel. Antes de crear un nuevo proveedor se debe preguntar al si quiere que primero se busque el proveedor a ver si existe.

LumbreTravel MCP Server_update_provider

Actualizar un proveedor en LumbreTravel, retorna el proveedor actualizado. Es importante que el proveedor ya exista en LumbreTravel, si no existe se puede usar la tool create_provider para crearlo. O si existe se puede usar la tool get_provider_by_name para obtener el id del proveedor.

LumbreTravel MCP Server_delete_provider

Eliminar un proveedor en LumbreTravel

LumbreTravel MCP Server_reactivate_provider

Reactivar un proveedor en LumbreTravel

LumbreTravel MCP Server_get_provider_by_name

Buscar proveedores por su nombre, retorna la lista de proveedores encontrados.

LumbreTravel MCP Server_create_service

Crear un servicio en LumbreTravel. Antes de crear un nuevo servicio se debe preguntar al si quiere que primero se busque el servicio a ver si existe.

LumbreTravel MCP Server_update_service

Actualizar un servicio en LumbreTravel, retorna el servicio actualizado. Es importante que el servicio ya exista en LumbreTravel, si no existe se puede usar la tool create_service para crearlo. O si existe se puede usar la tool get_services_by_name para obtener el id del servicio.

LumbreTravel MCP Server_delete_service

Eliminar un servicio en LumbreTravel

LumbreTravel MCP Server_reactivate_service

Reactivar un servicio en LumbreTravel

LumbreTravel MCP Server_get_services_by_name

Buscar servicios por su nombre, retorna la lista de servicios encontrados.

Image Generation MCP Server_generate-image

Generate an image based on a prompt

Knowledge Graph Memory Server_create_entities

Create multiple new entities in the knowledge graph

Knowledge Graph Memory Server_create_relations

Create multiple new relations between entities in the knowledge graph. Relations should be in active voice

Knowledge Graph Memory Server_add_observations

Add new observations to existing entities in the knowledge graph

Knowledge Graph Memory Server_delete_entities

Delete multiple entities and their associated relations from the knowledge graph

Knowledge Graph Memory Server_delete_observations

Delete specific observations from entities in the knowledge graph

Knowledge Graph Memory Server_delete_relations

Delete multiple relations from the knowledge graph

Knowledge Graph Memory Server_read_graph

Read the entire knowledge graph

Knowledge Graph Memory Server_search_nodes

Search for nodes in the knowledge graph based on one or more keywords. The search covers entity names, types, subdomains, and observation content. Multiple keywords are treated as OR conditions, where any keyword must match somewhere in the entity's fields.

Knowledge Graph Memory Server_open_nodes

Open specific nodes in the knowledge graph by their names. Returns the complete node information including subdomain and all metadata.

Unconventional-thinking MCP server_generate_unreasonable_thought

Generate a new unreasonable thought that challenges conventional thinking

Unconventional-thinking MCP server_branch_thought

Create a new branch of thinking from an existing thought

Unconventional-thinking MCP server_list_thoughts

List all thoughts in the current thinking session

Kibela MCP Server_kibela_search_notes

Search Kibela notes with given query

Kibela MCP Server_kibela_get_my_notes

Get your latest notes from Kibela

Kibela MCP Server_kibela_get_note_content

Get content and comments of a specific note

Twitch MCP Server_get_clips-
Twitch MCP Server_get_chat_settings-
Twitch MCP Server_get_videos-
Twitch MCP Server_get_global_emotes-
Twitch MCP Server_get_global_badges-
Twitch MCP Server_get_users-
Twitch MCP Server_get_video_comments-
Twitch MCP Server_get_game-
Twitch MCP Server_get_top_games-
Twitch MCP Server_get_channel_info-
Twitch MCP Server_get_stream_info-
Twitch MCP Server_search_categories-
Twitch MCP Server_search_channels-
Twitch MCP Server_get_streams-
MCP Google Server_search

Perform a web search query

MCP Google Server_read_webpage

Fetch and extract text content from a webpage

Voyp MCP Server_search_place

Search place details in a given location

Voyp MCP Server_search_place_by_number

Find place name and address by phone number

Voyp MCP Server_get_call

Retrieve call details

Voyp MCP Server_get_user

Retrieve user profile

Voyp MCP Server_start_call

Start a new phone call via Voyp API. The API returns the call id and a URL where users can track the progress of the call

Voyp MCP Server_hangup_call

Hangup an existing call

Voyp MCP Server_search_places

Search places in a given location

Perplexity MCP Server_perplexity_search

Search the web using Perplexity AI

MCP Journaling Server_start_new_session

Start a new journaling session by clearing previous conversation log.

Returns: str: Welcome message with current save location

MCP Journaling Server_record_interaction

Record both the user's message and assistant's response.

Args: user_message: The user's message assistant_message: The assistant's response

Returns: str: Confirmation message

MCP Journaling Server_generate_session_summary

Generate a markdown summary of the journaling session.

Args: summary: The llm generated summay of the conversation

Returns: str: Confirmation message

MercadoLibre MCP Server_seller_reputation

Obtiene la reputacin de un vendedor

MercadoLibre MCP Server_product_reviews

Obtiene las reseas de un producto

MercadoLibre MCP Server_product_description

Obtiene la descripcin de un producto

MercadoLibre MCP Server_search_products

Busca productos en MercadoLibre

Audiense Insights MCP Server_get-reports

Retrieves the list of Audiense insights reports owned by the authenticated user.

Audiense Insights MCP Server_get-report-info

Retrieves detailed information about a specific intelligence report, including its status, segmentation type, audience size, segments, and access links.

Audiense Insights MCP Server_compare-audience-influencers

Compares the influencers of an audience with a baseline audience. The baseline is determined as follows: If the selection was the full audience and a single country represents more than 50% of the audience, that country is used as the baseline. Otherwise, the Global baseline is applied. If the selection was a specific segment, the full audience is used as the baseline. Each influencer comparison includes: - Affinity (%) - The level of alignment between the influencer and the audience. Baseline Affinity (%) - The influencers affinity within the baseline audience. Uniqueness Score - A measure of how distinct the influencer is within the selected audience compared to the baseline.

Audiense Insights MCP Server_get-audience-content

Retrieves audience content engagement details for a given audience.

This tool provides a detailed breakdown of the content an audience interacts with, including:

  • Liked Content: Popular posts, top domains, top emojis, top hashtags, top links, top media, and a word cloud.
  • Shared Content: Content that the audience shares, categorized similarly to liked content.
  • Influential Content: Content from influential accounts that impact the audience, with similar categorization.

Each category contains:

  • popularPost: List of the most engaged posts.
  • topDomains: Most mentioned domains.
  • topEmojis: Most used emojis.
  • topHashtags: Most used hashtags.
  • topLinks: Most shared links.
  • topMedia: Media types shared and samples.
  • wordcloud: Frequently used words.
Audiense Insights MCP Server_report-summary

Generates a comprehensive summary of an Audiense report, including segment details, top insights, and influencers.

Audiense Insights MCP Server_get-audience-insights

Retrieves aggregated insights for a given audience ID, providing statistical distributions across various attributes. Available insights include demographics (e.g., gender, age, country), behavioral traits (e.g., active hours, platform usage), psychographics (e.g., personality traits, interests), and socioeconomic factors (e.g., income, education status).

Audiense Insights MCP Server_get-baselines

Retrieves available baselines, optionally filtered by country.

Audiense Insights MCP Server_get-categories

Retrieves the list of available affinity categories that can be used as the categories parameter in the compare-audience-influencers tool.

MCP Server Starter_hello_tool

Hello tool

mcp-editor_view

View file contents or directory listing

mcp-editor_create

Create a new file with specified content

mcp-editor_string_replace

Replace a string in a file with a new string

mcp-editor_insert

Insert text at a specific line in the file

mcp-editor_undo_edit

Undo the last edit to a file

Flutter MCP Server_search_flutter_docs

Search Flutter documentation for a given query

MCP Webhook Server_send_message

Send message to webhook endpoint

ClickSend MCP Server_send_sms

Send SMS messages via ClickSend

ClickSend MCP Server_make_tts_call

Make Text-to-Speech calls via ClickSend

MCP-PIF Server_read

Read file contents

MCP-PIF Server_write

Write or modify file content

MCP-PIF Server_cd

Change current directory

MCP-PIF Server_mkdir

Create a new directory

MCP-PIF Server_ls

List directory contents

MCP-PIF Server_pwd

Print working directory

MCP-PIF Server_rename

Rename a file or directory

MCP-PIF Server_move

Move a file or directory to a new location

MCP-PIF Server_delete

Delete a file or directory

MCP-PIF Server_reason

Process thoughts with flexible relationships

MCP-PIF Server_think

Non-verbal processing time

MCP-PIF Server_journal_create

Create a new journal entry

MCP-PIF Server_journal_read

Read journal entries within a date range. Dates should be in YYYY-MM-DD format. Times are handled in UTC, and the 'to' date is inclusive through end of day.

PostgreSQL MCP Server_analyze_database

Analyze PostgreSQL database configuration and performance

PostgreSQL MCP Server_get_setup_instructions

Get step-by-step PostgreSQL setup instructions

PostgreSQL MCP Server_debug_database

Debug common PostgreSQL issues

Slack User MCP Server_slack_list_channels

List public channels in the workspace with pagination

Slack User MCP Server_slack_post_message

Post a new message to a Slack channel

Slack User MCP Server_slack_reply_to_thread

Reply to a specific message thread in Slack

Slack User MCP Server_slack_add_reaction

Add a reaction emoji to a message

Slack User MCP Server_slack_get_channel_history

Get recent messages from a channel

Slack User MCP Server_slack_get_thread_replies

Get all replies in a message thread

Slack User MCP Server_slack_get_users

Get a list of all users in the workspace with their basic profile information

Slack User MCP Server_slack_get_user_profile

Get detailed profile information for a specific user

Shopify MCP Server_get-products

Get all products or search by title

Shopify MCP Server_get-products-by-collection

Get products from a specific collection

Shopify MCP Server_get-products-by-ids

Get products by their IDs

Shopify MCP Server_get-variants-by-ids

Get product variants by their IDs

Shopify MCP Server_get-customers

Get shopify customers with pagination support

Shopify MCP Server_tag-customer

Add tags to a customer

Shopify MCP Server_get-orders

Get shopify orders with advanced filtering and sorting

Shopify MCP Server_get-order

Get a single order by ID

Shopify MCP Server_create-discount

Create a basic discount code

Shopify MCP Server_create-draft-order

Create a draft order

Shopify MCP Server_complete-draft-order

Complete a draft order

Shopify MCP Server_get-collections

Get all collections

Shopify MCP Server_get-shop

Get shop details

Shopify MCP Server_get-shop-details

Get extended shop details including shipping countries

Shopify MCP Server_manage-webhook

Subscribe, find, or unsubscribe webhooks

descope-mcp-server_search-audits

Search Descope project audit logs

descope-mcp-server_search-users

Search for users in Descope project

descope-mcp-server_create-user

Create a new user in Descope project

descope-mcp-server_invite-user

Create and invite a new user to the Descope project

AlphaVantage-MCP_get-stock-quote

Get current stock quote information

AlphaVantage-MCP_get-company-info

Get detailed company information

AlphaVantage-MCP_get-crypto-exchange-rate

Get current cryptocurrency exchange rate

AlphaVantage-MCP_get-time-series

Get daily time series data for a stock

AlphaVantage-MCP_get-historical-options

Get historical options chain data for a stock with sorting capabilities

Morpho API MCP Server_get_vaults

Retrieves all vaults with their current states.

Morpho API MCP Server_get_vault_positions

Get positions for a specific vault.

Morpho API MCP Server_get_vault_transactions

Get latest vault transactions.

Morpho API MCP Server_get_markets

Retrieves markets from Morpho with pagination, ordering, and filtering support.

Morpho API MCP Server_get_whitelisted_markets

Retrieves only whitelisted markets from Morpho.

Morpho API MCP Server_get_asset_price

Get current price and yield information for specific assets.

Morpho API MCP Server_get_market_positions

Get positions overview for specific markets with pagination and ordering.

Morpho API MCP Server_get_historical_apy

Get historical APY data for a specific market.

Morpho API MCP Server_get_oracle_details

Get oracle details for a specific market.

Morpho API MCP Server_get_account_overview

Get account overview including positions and transactions.

Morpho API MCP Server_get_liquidations

Get liquidation events with filtering and pagination.

Morpho API MCP Server_get_vault_allocation

Get vault allocation for a specific market.

Morpho API MCP Server_get_vault_reallocates

Get vault reallocates for a specific vault.

Morpho API MCP Server_get_vault_apy_history

Get historical APY data for a vault.

Release Notes MCP Server_generate_release_notes

Generate release notes from commits in a given timeframe or commit range

Release Notes MCP Server_analyze_commits

Analyze commits and provide statistics

Release Notes MCP Server_configure_template

Configure a custom template for release notes

Tavily MCP Server_tavily-search

A powerful web search tool that provides comprehensive, real-time results using Tavily's AI search engine. Returns relevant web content with customizable parameters for result count, content type, and domain filtering. Ideal for gathering current information, news, and detailed web content analysis.

Tavily MCP Server_tavily-extract

A powerful web content extraction tool that retrieves and processes raw content from specified URLs, ideal for data collection, content analysis, and research tasks.

Code Research MCP Server_search_stackoverflow

Search Stack Overflow for programming questions and answers

Code Research MCP Server_search_mdn

Search MDN Web Docs for web development documentation

Code Research MCP Server_search_github

Search GitHub for repositories and code

Code Research MCP Server_search_npm

Search npm registry for JavaScript packages

Code Research MCP Server_search_pypi

Search PyPI for Python packages

Code Research MCP Server_search_all

Search all platforms simultaneously

Better Auth MCP Server_analyze_project

Analyze project structure and dependencies to recommend Better-Auth setup approach

Better Auth MCP Server_setup_better_auth

Install and configure Better-Auth in the project

Better Auth MCP Server_analyze_current_auth

Detect and analyze existing auth.js/next-auth implementation

Better Auth MCP Server_generate_migration_plan

Create step-by-step migration plan from existing auth to Better-Auth

Better Auth MCP Server_test_auth_flows

Test authentication workflows

Better Auth MCP Server_test_security

Run security tests on Better-Auth setup

Better Auth MCP Server_analyze_logs

Analyze Better-Auth logs for issues

Better Auth MCP Server_monitor_auth_flows

Real-time monitoring of authentication processes

DeepSeek-Claude MCP Server_reason
Process a query using DeepSeek's R1 reasoning engine and prepare it for integration with Claude. DeepSeek R1 leverages advanced reasoning capabilities that naturally evolved from large-scale reinforcement learning, enabling sophisticated reasoning behaviors. The output is enclosed within `<ant_thinking>` tags to align with Claude's thought processing framework. Args: query (dict): Contains the following keys: - context (str): Optional background information for the query. - question (str): The specific question to be analyzed. Returns: str: The reasoning output from DeepSeek, formatted with `<ant_thinking>` tags for seamless use with Claude.
Trello MCP Server_get_boards

Get all boards for the authenticated user

Trello MCP Server_get_lists

Get all lists in a board

Trello MCP Server_get_cards

Get cards from a board or specific list

Trello MCP Server_get_card_details

Get detailed information about a specific card

Trello MCP Server_update_card

Update properties of a specific card

IaC Memory MCP Server_get_ansible_collection_info

Retrieve comprehensive information about an Ansible collection

IaC Memory MCP Server_list_provider_resources

List all resources associated with a specific Terraform provider

IaC Memory MCP Server_get_terraform_provider_info

Retrieve comprehensive information about a Terraform provider

IaC Memory MCP Server_list_terraform_providers

List all cached Terraform providers with basic metadata

IaC Memory MCP Server_get_provider_version_history

Retrieve version history for a specific Terraform provider

IaC Memory MCP Server_get_terraform_resource_info

Retrieve comprehensive information about a Terraform resource including schema and documentation

IaC Memory MCP Server_list_ansible_collections

List all cached Ansible collections with basic metadata

IaC Memory MCP Server_get_collection_version_history

Retrieve version history for a specific Ansible collection

IaC Memory MCP Server_get_ansible_module_info

Retrieve comprehensive information about an Ansible module including schema and documentation

IaC Memory MCP Server_get_resource_version_compatibility

Check resource compatibility across provider versions

IaC Memory MCP Server_add_terraform_provider

Add a new Terraform provider to the memory store with version and documentation information

IaC Memory MCP Server_update_provider_version

Update an existing Terraform provider's version information and documentation links

IaC Memory MCP Server_add_terraform_resource

Add a new Terraform resource definition with its schema and version information

IaC Memory MCP Server_update_resource_schema

Update an existing Terraform resource's schema and related information

IaC Memory MCP Server_add_ansible_collection

Add a new Ansible collection to the memory store with version and documentation information

IaC Memory MCP Server_update_collection_version

Update an existing Ansible collection's version information and documentation links

IaC Memory MCP Server_add_ansible_module

Add a new Ansible module definition with its schema and version information

IaC Memory MCP Server_update_module_version

Update an existing Ansible module's schema and related information

IaC Memory MCP Server_get_module_version_compatibility

Check module compatibility across collection versions

IaC Memory MCP Server_create_entity

Create a new entity in the knowledge graph with optional initial observations

IaC Memory MCP Server_update_entity

Update an existing entity's properties and add new observations

IaC Memory MCP Server_delete_entity

Remove an entity and its relationships from the knowledge graph

IaC Memory MCP Server_view_relationships

Retrieve all relationships and observations for a specific entity

Browser Use Server_screenshot

Take a screenshot of a webpage

Browser Use Server_get_html

Get the HTML content of a webpage

Browser Use Server_execute_js

Execute JavaScript code on a webpage

Browser Use Server_get_console_logs

Get the console logs of a webpage

Skrape MCP Server_get_markdown

Get markdown content from a webpage using skrape.ai

Postman Tool Generation MCP Server_generate_ai_tool

Generate code for an AI agent tool using a Postman collection and request

MCP Spotify Server_get_artist_top_tracks

Get Spotify catalog information about an artist's top tracks

MCP Spotify Server_get_artist_related_artists

Get Spotify catalog information about artists similar to a given artist

MCP Spotify Server_get_access_token

Get a valid Spotify access token for API requests

MCP Spotify Server_search

Search for tracks, albums, artists, or playlists

MCP Spotify Server_get_artist

Get Spotify catalog information for an artist

MCP Spotify Server_get_multiple_artists

Get Spotify catalog information for multiple artists

MCP Spotify Server_get_artist_albums

Get Spotify catalog information about an artist's albums

MCP Spotify Server_get_album

Get Spotify catalog information for an album

MCP Spotify Server_get_album_tracks

Get Spotify catalog information for an album's tracks

MCP Spotify Server_get_multiple_albums

Get Spotify catalog information for multiple albums

MCP Spotify Server_get_track

Get Spotify catalog information for a track

MCP Spotify Server_get_available_genres

Get a list of available genres for recommendations

MCP Spotify Server_get_new_releases

Get a list of new album releases featured in Spotify

MCP Spotify Server_get_recommendations

Get track recommendations based on seed tracks, artists, or genres

MCP Spotify Server_get_audiobook

Get Spotify catalog information for an audiobook

MCP Spotify Server_get_multiple_audiobooks

Get Spotify catalog information for multiple audiobooks

MCP Spotify Server_get_audiobook_chapters

Get Spotify catalog information about an audiobook's chapters

MCP Spotify Server_get_playlist

Get a playlist owned by a Spotify user

MCP Spotify Server_get_playlist_tracks

Get full details of the tracks of a playlist

MCP Spotify Server_get_playlist_items

Get full details of the items of a playlist

MCP Spotify Server_modify_playlist

Change a playlist's name and public/private state

MCP Spotify Server_get_current_user_playlists

Get a list of the playlists owned or followed by the current Spotify user

MCP Spotify Server_add_tracks_to_playlist

Add one or more tracks to a playlist

MCP Spotify Server_remove_tracks_from_playlist

Remove one or more tracks from a playlist

MCP Spotify Server_get_featured_playlists

Get a list of Spotify featured playlists

MCP Spotify Server_get_category_playlists

Get a list of Spotify playlists tagged with a particular category

Zotero MCP Server_zotero_item_metadata

Get metadata information about a specific Zotero item, given the item key.

Zotero MCP Server_zotero_item_fulltext

Get the full text content of a Zotero item, given the item key of a parent item or specific attachment.

Zotero MCP Server_zotero_search_items

Search for items in your Zotero library, given a query string, query mode (titleCreatorYear or everything), and optional tag search (supports boolean searches). Returned results can be looked up with zotero_get_fulltext or zotero_get_metadata.

Modes MCP Server_list_modes

List all custom modes

Modes MCP Server_get_mode

Get details of a specific mode

Modes MCP Server_create_mode

Create a new custom mode

Modes MCP Server_update_mode

Update an existing custom mode

Modes MCP Server_delete_mode

Delete a custom mode

Modes MCP Server_validate_mode

Validate a mode configuration without saving it

Brave Search MCP Server_brave_web_search

Execute web search using Brave Search API with improved results

Args: query: Search terms count: Desired number of results (10-20)
Brave Search MCP Server_brave_local_search

Search for local businesses and places

Args: query: Location terms count: Results (1-20
Waldur MCP Server_query

Run a read-only SQL query

Waldur MCP Server_list_customers

List all customers

Waldur MCP Server_list_projects

List all projects

Waldur MCP Server_list_resources

List all resources

Waldur MCP Server_list_invoices

List all invoices

Waldur MCP Server_list_offerings

List all offerings

Waldur MCP Server_create_invitation

Invite users to project or organization by email

Args: scope_type: Whether to invite users to organization or project scope_name: Name of the organization or project to invite users to role: Role to assign to invited users emails: List of email addresses to invite extra_invitation_text: Custom message to include in the invitation

Shopify MCP Server_get-products-by-collection

Get products from a specific collection

Shopify MCP Server_get-products-by-ids

Get products by their IDs

Shopify MCP Server_get-variants-by-ids

Get product variants by their IDs

Shopify MCP Server_get-products

Get all products or search by title

Shopify MCP Server_get-customers

Get shopify customers with pagination support

Shopify MCP Server_tag-customer

Add tags to a customer

Shopify MCP Server_get-orders

Get shopify orders with advanced filtering and sorting

Shopify MCP Server_get-order

Get a single order by ID

Shopify MCP Server_create-discount

Create a basic discount code

Shopify MCP Server_create-draft-order

Create a draft order

Shopify MCP Server_complete-draft-order

Complete a draft order

Shopify MCP Server_get-collections

Get all collections

Shopify MCP Server_get-shop

Get shop details

Shopify MCP Server_get-shop-details

Get extended shop details including shipping countries

Shopify MCP Server_manage-webhook

Subscribe, find, or unsubscribe webhooks

MCP-researcher Server_chat_perplexity

Maintains ongoing conversations with Perplexity AI. Creates new chats or continues existing ones with full history context.

MCP-researcher Server_search

Perform a general search query to get comprehensive information on any topic

MCP-researcher Server_get_documentation

Get documentation and usage examples for a specific technology, library, or API

MCP-researcher Server_find_apis

Find and evaluate APIs that could be integrated into a project

MCP-researcher Server_check_deprecated_code

Check if code or dependencies might be using deprecated features

Mentor MCP Server_second_opinion

Provides a second opinion on a user's request by analyzing it with an LLM and listing critical considerations.

Mentor MCP Server_code_review

Provides a code review for a given file or code snippet, focusing on potential bugs, style issues, performance bottlenecks, and security vulnerabilities.

Mentor MCP Server_design_critique

Offers a critique of a design document, UI/UX mockup, or architectural diagram, focusing on usability, aesthetics, consistency, accessibility, and potential design flaws.

Mentor MCP Server_writing_feedback

Provides feedback on a piece of writing, such as an essay, article, or technical documentation, focusing on clarity, grammar, style, structure, and overall effectiveness.

Mentor MCP Server_brainstorm_enhancements

Generates creative ideas for improving a given concept, product, or feature, focusing on innovation, feasibility, and user value.

Modes MCP Server_list_modes

List all custom modes

Modes MCP Server_get_mode

Get details of a specific mode

Modes MCP Server_create_mode

Create a new custom mode

Modes MCP Server_update_mode

Update an existing custom mode

Modes MCP Server_delete_mode

Delete a custom mode

Modes MCP Server_validate_mode

Validate a mode configuration without saving it

RAT MCP Server_generate_response

Generate a response using DeepSeek's reasoning and Claude's response generation through OpenRouter.

RAT MCP Server_check_response_status

Check the status of a response generation task

MCP Inception MCP Server_execute_map_reduce_mcp_client

Process multiple items in parallel then sequentially reduce the results to a single output.

MCP Inception MCP Server_execute_mcp_client

Offload certain tasks to AI. Used for research purposes, do not use for code editing or anything code related. Only used to fetch data.

MCP Inception MCP Server_execute_parallel_mcp_client

Execute multiple AI tasks in parallel, with responses in JSON key-value pairs.

MCP Server for eSignatures_create_contract

Creates a new contract. The contract can be a draft which the user can customize/send, or the contract can be sent instantly. So called 'signature fields' like Name/Date/signature-line must be left out, they are all handled automatically. Contract owners can customize the content by replacing {{placeholder fields}} inside the content, and the signers can fill in Signer fields when they sign the contract.

MCP Server for eSignatures_query_contract

Responds with the contract details, contract_id, status, final PDF url if present, title, labels, metadata, expiry time if present, and signer details with all signer events (signer events are included only for recent contracts, with rate limiting).

MCP Server for eSignatures_withdraw_contract

Withdraws a sent contract.

MCP Server for eSignatures_delete_contract

Deletes a contract. The contract can only be deleted if it's a test contract or a draft contract.

MCP Server for eSignatures_list_recent_contracts

Returns the the details of the latest 100 contracts.

MCP Server for eSignatures_create_template

Creates a reusable contract template for contracts to be based on.

MCP Server for eSignatures_update_template

Updates the title, labels or the content of a contract template.

MCP Server for eSignatures_remove_template_collaborator

Removes the template collaborator

MCP Server for eSignatures_list_template_collaborators

Returns the list of template collaborators, including their GUID, name, email, and the HTTPS link for editing the template

MCP Server for eSignatures_query_template

Responds with the template details, template_id, title, labels, created_at, list of the Placeholder fields in the template, list of Signer fields int he template, and the full content inside document_elements

MCP Server for eSignatures_delete_template

Deletes a contract template.

MCP Server for eSignatures_list_templates

Lists the templates.

MCP Server for eSignatures_add_template_collaborator

Creates a HTTPS link for editing a contract template; sends an invitation email if an email is provided..

BlueSky MCP Server_bluesky_get_profile

Get a user's profile information

BlueSky MCP Server_bluesky_get_posts

Get recent posts from a user

BlueSky MCP Server_bluesky_search_posts

Search for posts on Bluesky

BlueSky MCP Server_bluesky_get_follows

Get a list of accounts the user follows

BlueSky MCP Server_bluesky_get_followers

Get a list of accounts following the user

BlueSky MCP Server_bluesky_get_liked_posts

Get a list of posts liked by the user

BlueSky MCP Server_bluesky_get_personal_feed

Get your personalized Bluesky feed

BlueSky MCP Server_bluesky_search_profiles

Search for Bluesky profiles

Toolkit MCP Server_checkConnectivity

Test TCP connectivity to a host and port

Toolkit MCP Server_getCurrentTime

Get current time formatted with Intl.DateTimeFormat

Toolkit MCP Server_getSystemInfo

Get system information using Node.js os module

Toolkit MCP Server_getLoadAverage

Get system load average for 1, 5, and 15 minutes

Toolkit MCP Server_getNetworkInterfaces

Get network interface information

Toolkit MCP Server_getPublicIP

Get public IP address using ip-api.com

Toolkit MCP Server_pingHost

Ping a host using system ping command

Toolkit MCP Server_traceroute

Perform traceroute to a host

Toolkit MCP Server_geolocate

Get geolocation information for an IP address or domain

Toolkit MCP Server_clearGeoCache

Clear the geolocation cache

Toolkit MCP Server_generateUUID

Generate a random UUID using crypto.randomUUID()

Toolkit MCP Server_generateQRCode

Generate a QR code from input data

Toolkit MCP Server_convertTimezone

Convert date/time between timezones using Luxon

Toolkit MCP Server_listTimezones

List all available IANA timezones

Toolkit MCP Server_hashData

Hash input data using Node.js crypto module

Toolkit MCP Server_compareHashes

Compare two hashes in constant time

mcp-pyodide_read-image

Read an image from a mounted directory

mcp-pyodide_execute-python

Execute Python code using Pyodide with output capture. When generating images, they will be automatically saved to the output directory instead of being displayed. Images can be accessed from the saved file paths that will be included in the output.

mcp-pyodide_install-python-packages

Install Python packages using Pyodide

mcp-pyodide_get-mount-points

List mounted directories

mcp-pyodide_list-mounted-directory

List contents of a mounted directory

Kobold MCP Server_kobold_max_context_length

Get current max context length setting

Kobold MCP Server_kobold_max_length

Get current max length setting

Kobold MCP Server_kobold_generate

Generate text with KoboldAI

Kobold MCP Server_kobold_model_info

Get current model information

Kobold MCP Server_kobold_version

Get KoboldAI version information

Kobold MCP Server_kobold_perf_info

Get performance information

Kobold MCP Server_kobold_token_count

Count tokens in text

Kobold MCP Server_kobold_detokenize

Convert token IDs to text

Kobold MCP Server_kobold_transcribe

Transcribe audio using Whisper

Kobold MCP Server_kobold_web_search

Search the web via DuckDuckGo

Kobold MCP Server_kobold_tts

Generate text-to-speech audio

Kobold MCP Server_kobold_abort

Abort the currently ongoing generation

Kobold MCP Server_kobold_last_logprobs

Get token logprobs from the last request

Kobold MCP Server_kobold_sd_models

List available Stable Diffusion models

Kobold MCP Server_kobold_sd_samplers

List available Stable Diffusion samplers

Kobold MCP Server_kobold_txt2img

Generate image from text prompt

Kobold MCP Server_kobold_complete

Text completion (OpenAI-compatible)

Kobold MCP Server_kobold_img2img

Transform existing image using prompt

Kobold MCP Server_kobold_interrogate

Generate caption for image

Kobold MCP Server_kobold_chat

Chat completion (OpenAI-compatible)

Together AI Image MCP Server_generate_image

Generate an image using Together AI

MCP Chrome Google Search_web-search

Search webpages and get a specific page of results (each page has ~10 results). Optionally filter by site and timeframe.

MCP Chrome Google Search_web_fetch

Extract readable text content from a webpage using Chrome browser automation.

Key Features:

  • Returns main content text and optionally links
MCP Variance Log_log-query
Conversation Variation analysis Continuously monitor our conversation and automatically log unusual or noteworthy interactions based on the following criteria: 1. Probability Classifications: HIGH (Not Logged): - Common questions and responses - Standard technical inquiries - Regular clarifications - Normal conversation flow MEDIUM (Logged): - Unexpected but plausible technical issues - Unusual patterns in user behavior - Noteworthy insights or connections - Edge cases in normal usage - Uncommon but valid use cases LOW (Logged with Priority): - Highly unusual technical phenomena - Potentially problematic patterns - Critical edge cases - Unexpected system behaviors - Novel or unique use cases
MCP Variance Log_read-logs

Retrieve logged conversation variations from the database.

MCP Variance Log_read_query

Execute a SELECT query on the SQLite database

Schema Reference: Table: chat_monitoring Fields: - log_id (INTEGER PRIMARY KEY) - timestamp (DATETIME) - session_id (TEXT) - user_id (TEXT) - interaction_type (TEXT) - probability_class (TEXT: HIGH, MEDIUM, LOW) - message_content (TEXT) - response_content (TEXT) - context_summary (TEXT) - reasoning (TEXT) Example: SELECT timestamp, probability_class, context_summary FROM chat_monitoring WHERE probability_class = 'LOW' LIMIT 5;
MCP Variance Log_write_query

Execute an INSERT, UPDATE, or DELETE query

MCP Variance Log_create_table

Create a new table in the SQLite database

MCP Variance Log_list_tables

List all tables in the database

MCP Variance Log_describe_table

Show structure of a specific table

MCP Variance Log_append_insight

Add a business insight to the memo

MCP Browser Use Server_run_browser_agent

Handle run-browser-agent tool calls.

mcp-server-axiom-js_queryApl

Instructions

  1. Query Axiom datasets using Axiom Processing Language (APL). The query must be a valid APL query string.
  2. ALWAYS get the schema of the dataset before running queries rather than guessing. You can do this by getting a single event and projecting all fields.
  3. Keep in mind that there's a maximum row limit of 65000 rows per query.
  4. Prefer aggregations over non aggregating queries when possible to reduce the amount of data returned.
  5. Be selective in what you project in each query (unless otherwise needed, like for discovering the schema). It's expensive to project all fields.
  6. ALWAYS restrict the time range of the query to the smallest possible range that meets your needs. This will reduce the amount of data scanned and improve query performance.
  7. NEVER guess the schema of the dataset. If you don't where something is, use search first to find in which fields it appears.

Examples

Basic:

  • Filter: ['logs'] | where ['severity'] == "error" or ['duration'] > 500ms
  • Time range: ['logs'] | where ['_time'] > ago(2h) and ['_time'] < now()
  • Project rename: ['logs'] | project-rename responseTime=['duration'], path=['url']

Aggregations:

  • Count by: ['logs'] | summarize count() by bin(['_time'], 5m), ['status']
  • Multiple aggs: ['logs'] | summarize count(), avg(['duration']), max(['duration']), p95=percentile(['duration'], 95) by ['endpoint']
  • Dimensional: ['logs'] | summarize dimensional_analysis(['isError'], pack_array(['endpoint'], ['status']))
  • Histograms: ['logs'] | summarize histogram(['responseTime'], 100) by ['endpoint']
  • Distinct: ['logs'] | summarize dcount(['userId']) by bin_auto(['_time'])

Search & Parse:

  • Search all: search "error" or "exception"
  • Parse logs: ['logs'] | parse-kv ['message'] as (duration, error) with (pair_delimiter=",")
  • Regex extract: ['logs'] | extend errorCode = extract("error code ([0-9]+)", 1, ['message'])
  • Contains ops: ['logs'] | where ['message'] contains_cs "ERROR" or ['message'] startswith "FATAL"

Data Shaping:

  • Extend & Calculate: ['logs'] | extend duration_s = ['duration']/1000, success = ['status'] < 400
  • Dynamic: ['logs'] | extend props = parse_json(['properties']) | where ['props.level'] == "error"
  • Pack/Unpack: ['logs'] | extend fields = pack("status", ['status'], "duration", ['duration'])
  • Arrays: ['logs'] | where ['url'] in ("login", "logout", "home") | where array_length(['tags']) > 0

Advanced:

  • Make series: ['metrics'] | make-series avg(['cpu']) default=0 on ['_time'] step 1m by ['host']
  • Join: ['errors'] | join kind=inner (['users'] | project ['userId'], ['email']) on ['userId']
  • Union: union ['logs-app*'] | where ['severity'] == "error"
  • Fork: ['logs'] | fork (where ['status'] >= 500 | as errors) (where ['status'] < 300 | as success)
  • Case: ['logs'] | extend level = case(['status'] >= 500, "error", ['status'] >= 400, "warn", "info")

Time Operations:

  • Bin & Range: ['logs'] | where ['_time'] between(datetime(2024-01-01)..now())
  • Multiple time bins: ['logs'] | summarize count() by bin(['_time'], 1h), bin(['_time'], 1d)
  • Time shifts: ['logs'] | extend prev_hour = ['_time'] - 1h

String Operations:

  • String funcs: ['logs'] | extend domain = tolower(extract("://([^/]+)", 1, ['url']))
  • Concat: ['logs'] | extend full_msg = strcat(['level'], ": ", ['message'])
  • Replace: ['logs'] | extend clean_msg = replace_regex("(password=)[^&]", "\1**", ['message'])

Common Patterns:

  • Error analysis: ['logs'] | where ['severity'] == "error" | summarize error_count=count() by ['error_code'], ['service']
  • Status codes: ['logs'] | summarize requests=count() by ['status'], bin_auto(['_time']) | where ['status'] >= 500
  • Latency tracking: ['logs'] | summarize p50=percentile(['duration'], 50), p90=percentile(['duration'], 90) by ['endpoint']
  • User activity: ['logs'] | summarize user_actions=count() by ['userId'], ['action'], bin(['_time'], 1h)
mcp-server-axiom-js_listDatasets

List all available Axiom datasets

mcp-server-axiom-js_getDatasetInfoAndSchema

Get dataset info and schema

mcp-sequentialthinking-tools_sequentialthinking_tools

A detailed tool for dynamic and reflective problem-solving through thoughts. This tool helps analyze problems through a flexible thinking process that can adapt and evolve. Each thought can build on, question, or revise previous insights as understanding deepens.

IMPORTANT: When initializing this tool, you must pass all available tools that you want the sequential thinking process to be able to use. The tool will analyze these tools and provide recommendations for their use.

When to use this tool:

  • Breaking down complex problems into steps
  • Planning and design with room for revision
  • Analysis that might need course correction
  • Problems where the full scope might not be clear initially
  • Problems that require a multi-step solution
  • Tasks that need to maintain context over multiple steps
  • Situations where irrelevant information needs to be filtered out
  • When you need guidance on which tools to use and in what order

Key features:

  • You can adjust total_thoughts up or down as you progress
  • You can question or revise previous thoughts
  • You can add more thoughts even after reaching what seemed like the end
  • You can express uncertainty and explore alternative approaches
  • Not every thought needs to build linearly - you can branch or backtrack
  • Generates a solution hypothesis
  • Verifies the hypothesis based on the Chain of Thought steps
  • Recommends appropriate tools for each step
  • Provides rationale for tool recommendations
  • Suggests tool execution order and parameters
  • Tracks previous recommendations and remaining steps

Parameters explained:

  • thought: Your current thinking step, which can include:
  • Regular analytical steps
  • Revisions of previous thoughts
  • Questions about previous decisions
  • Realizations about needing more analysis
  • Changes in approach
  • Hypothesis generation
  • Hypothesis verification
  • Tool recommendations and rationale
  • next_thought_needed: True if you need more thinking, even if at what seemed like the end
  • thought_number: Current number in sequence (can go beyond initial total if needed)
  • total_thoughts: Current estimate of thoughts needed (can be adjusted up/down)
  • is_revision: A boolean indicating if this thought revises previous thinking
  • revises_thought: If is_revision is true, which thought number is being reconsidered
  • branch_from_thought: If branching, which thought number is the branching point
  • branch_id: Identifier for the current branch (if any)
  • needs_more_thoughts: If reaching end but realizing more thoughts needed
  • current_step: Current step recommendation, including:
  • step_description: What needs to be done
  • recommended_tools: Tools recommended for this step
  • expected_outcome: What to expect from this step
  • next_step_conditions: Conditions to consider for the next step
  • previous_steps: Steps already recommended
  • remaining_steps: High-level descriptions of upcoming steps

You should:

  1. Start with an initial estimate of needed thoughts, but be ready to adjust
  2. Feel free to question or revise previous thoughts
  3. Don't hesitate to add more thoughts if needed, even at the "end"
  4. Express uncertainty when present
  5. Mark thoughts that revise previous thinking or branch into new paths
  6. Ignore information that is irrelevant to the current step
  7. Generate a solution hypothesis when appropriate
  8. Verify the hypothesis based on the Chain of Thought steps
  9. Consider available tools that could help with the current step
  10. Provide clear rationale for tool recommendations
  11. Suggest specific tool parameters when appropriate
  12. Consider alternative tools for each step
  13. Track progress through the recommended steps
  14. Provide a single, ideally correct answer as the final output
  15. Only set next_thought_needed to false when truly done and a satisfactory answer is reached
Julia Documentation MCP Server_get-doc

Get Julia documentation for a package, module, type, function, or method

Julia Documentation MCP Server_list-package

List available symbols in a Julia package or module

Julia Documentation MCP Server_explore-project

Explore a Julia project's structure and dependencies

Julia Documentation MCP Server_get-source

Get Julia source code for a function, type, or method

Linear MCP Server_create_issue

Create a new Linear issue with optional parent linking. Supports self-assignment using "me" as assigneeId.

Linear MCP Server_update_issue

Update an existing Linear issue. Supports self-assignment using "me" as assigneeId.

Linear MCP Server_get_issue

Get detailed information about a specific Linear issue including optional relationships and cleaned content

Linear MCP Server_search_issues

Search for Linear issues using a query string and advanced filters. Supports filtering by assignee, creator, and project. Examples: 1. Find your assigned issues: {query: "", filter: {assignedTo: "me"}}, 2. Find issues you created: {query: "", filter: {createdBy: "me"}}, 3. Find issues assigned to specific user: {query: "", filter: {assignedTo: "user-id-123"}}, 4. Find issues in a specific project: {query: "bug", projectId: "project-123"}, 5. Find issues by project name: {query: "feature", projectName: "Website Redesign"}

Linear MCP Server_get_teams

Get a list of Linear teams with optional name/key filtering

Linear MCP Server_create_comment

Create a new comment on a Linear issue

Linear MCP Server_delete_issue

Delete an existing Linear issue

Linear MCP Server_get_projects

Get a list of Linear projects with optional name filtering and pagination

Linear MCP Server_get_project_updates

Get project updates for a given project ID with optional filtering parameters

ESA MCP Server_search_esa_posts

Search posts in esa.io. Response is paginated. For efficient search, you can use customized queries like the following: keyword for partial match, "keyword" for exact match, keyword1 keyword2 for AND match, keyword1 OR keyword2 for OR match, -keyword for excluding keywords, title:keyword for title match, wip:true or wip:false for WIP posts, kind:stock or kind:flow for kind match, category:category_name for partial match with category name, in:category_name for prefix match with category name, on:category_name for exact match with category name, body:keyword for body match, tag:tag_name or tag case_sensitive:true for tag match, user:screen_name for post author's screen name, updated_by:screen_name for post updater's screen name, comment:keyword for partial match with comments, starred:true or starred:false for starred posts, watched:true or watched:false for watched posts, watched_by:screen_name for screen name of members watching the post, sharing:true or sharing:false for shared posts, stars:>3 for posts with more than 3 stars, watches:>3 for posts with more than 3 watches, comments:>3 for posts with more than 3 comments, done:>=3 for posts with 3 or more done items, undone:>=3 for posts with 3 or more undone items, created:>YYYY-MM-DD for filtering by creation date, updated:>YYYY-MM-DD for filtering by update date

ESA MCP Server_read_esa_post

Read a post in esa.io.

ESA MCP Server_read_esa_multiple_posts

Read multiple posts in esa.io.

Obsidian MCP Server_obsidian_list_files_in_vault

Lists all files and directories in the root directory of your Obsidian vault. Returns a hierarchical structure of files and folders, including metadata like file type.

Obsidian MCP Server_obsidian_list_files_in_dir

Lists all files and directories that exist in a specific Obsidian directory. Returns a hierarchical structure showing files, folders, and their relationships. Useful for exploring vault organization and finding specific files.

Obsidian MCP Server_obsidian_get_file_contents

Return the content of a single file in your vault. Supports markdown files, text files, and other readable formats. Returns the raw content including any YAML frontmatter.

Obsidian MCP Server_obsidian_find_in_file

Full-text search across all files in the vault. Returns matching files with surrounding context for each match. Useful for finding specific content, references, or patterns across notes.

Obsidian MCP Server_obsidian_append_content

Append content to a new or existing file in the vault.

Obsidian MCP Server_obsidian_patch_content

Update the entire content of an existing note or create a new one.

Obsidian MCP Server_obsidian_complex_search

Advanced search functionality using JsonLogic queries. Enables complex file filtering based on paths, metadata, modification times, and content patterns. Supports logical operations, date comparisons, and pattern matching.

Obsidian MCP Server_obsidian_get_properties

Get properties (title, tags, status, etc.) from an Obsidian note's YAML frontmatter. Returns all available properties including custom fields.

Obsidian MCP Server_obsidian_update_properties

Update properties in an Obsidian note's YAML frontmatter. Intelligently merges arrays (tags, type, status), handles custom fields, and automatically manages timestamps (created by Obsidian, modified by MCP server). Existing properties not included in the update are preserved.

Jina.ai Grounding MCP Server_ground_statement

Ground a statement using real-time web search results to check factuality. When providing URLs via the references parameter, ensure they are publicly accessible and contain relevant information about the statement. If the URLs do not contain the necessary information, try removing the URL restrictions to search the entire web.

EOL MCP Server_check_version

Check EOL status and support information for software versions

EOL MCP Server_check_cve

Scan for known security vulnerabilities and support status

EOL MCP Server_list_products

Browse or search available software products

EOL MCP Server_compare_versions

Compare versions and get detailed upgrade analysis

EOL MCP Server_get_all_details

Get comprehensive lifecycle details for all versions of a product

Azure DevOps MCP Server for Cline_update_wiki_page

Create or update a wiki page

Azure DevOps MCP Server for Cline_list_projects

List all projects in the Azure DevOps organization

Azure DevOps MCP Server for Cline_get_work_item

Get work items by IDs

Azure DevOps MCP Server for Cline_list_work_items

List work items from a board

Azure DevOps MCP Server for Cline_create_work_item

Create a new work item using JSON patch operations

Azure DevOps MCP Server for Cline_update_work_item

Update an existing work item using JSON patch operations

Azure DevOps MCP Server for Cline_get_boards

List available boards in the project

Azure DevOps MCP Server for Cline_get_wikis

List all wikis in the project

Azure DevOps MCP Server for Cline_get_wiki_page

Get a wiki page by path

Azure DevOps MCP Server for Cline_create_wiki

Create a new wiki

Azure DevOps MCP Server for Cline_list_pipelines

List all pipelines in the project

Azure DevOps MCP Server for Cline_trigger_pipeline

Trigger a pipeline run

Azure DevOps MCP Server for Cline_list_pull_requests

List all pull requests in the project

Azure DevOps MCP Server for Cline_create_pull_request

Create a new pull request

Azure DevOps MCP Server for Cline_update_pull_request

Update an existing pull request

MCP JinaAI Search Server_search

Search the web and get clean, LLM-friendly content using Jina.ai Reader. Returns top 5 results with URLs and clean content.

MCP Puppeteer Linux Server_puppeteer_navigate

Navigate to a URL

MCP Puppeteer Linux Server_puppeteer_screenshot

Take a screenshot of the current page or a specific element

MCP Puppeteer Linux Server_puppeteer_click

Click an element on the page

MCP Puppeteer Linux Server_puppeteer_fill

Fill out an input field

MCP Puppeteer Linux Server_puppeteer_select

Select an element on the page with Select tag

MCP Puppeteer Linux Server_puppeteer_hover

Hover an element on the page

MCP Puppeteer Linux Server_puppeteer_evaluate

Execute JavaScript in the browser console

mcp-wsl-exec_execute_command

Execute a command in WSL

mcp-wsl-exec_confirm_command

Confirm execution of a dangerous command

AppTweak MCP Server_search_app

Search for an app by name and platform (ios/android)

AppTweak MCP Server_get_app_details

Get detailed information about an app by ID

AppTweak MCP Server_analyze_top_keywords

Get keyword suggestions sorted by score (keyword quality), volume (search popularity), or rank (ranking difficulty)

AppTweak MCP Server_analyze_reviews

Analyze app reviews and ratings to extract user satisfaction insights

MCP Webcam Server_capture

Gets the latest picture from the webcam. You can use this if the human asks questions about their immediate environment, if you want to see the human or to examine an object they may be referring to or showing you.

MCP Webcam Server_screenshot

Gets a screenshot of the current screen or window

MCP Perplexity Search_chat_completion

Generate chat completions using the Perplexity API

Vilnius Transport MCP Server_find_stops

Search for public transport stops by name

Vilnius Transport MCP Server_find_closest_stop

Find the closest public transport stop to given coordinates

Starknet MCP Server_get_block

Get a block from the Starknet blockchain

tavily-search-mcp-server_tavily_search

Performs a web search using the Tavily Search API, optimized for LLMs. Use this for broad information gathering, recent events, or when you need diverse web sources. Supports search depth, topic selection, time range filtering, and domain inclusion/exclusion.

mcp-tung-shing_get-tung-shing

Get the daily almanac from Tung Shing

MCP Server Fetch TypeScript_get_raw_text

Retrieves raw text content directly from a URL without browser rendering. Ideal for structured data formats like JSON, XML, CSV, TSV, or plain text files. Best used when fast, direct access to the source content is needed without processing dynamic elements.

MCP Server Fetch TypeScript_get_rendered_html

Fetches fully rendered HTML content using a headless browser, including JavaScript-generated content. Essential for modern web applications, single-page applications (SPAs), or any content that requires client-side rendering to be complete.

MCP Server Fetch TypeScript_get_markdown

Converts web page content to well-formatted Markdown, preserving structural elements like tables and definition lists. Recommended as the default tool for web content extraction when a clean, readable text format is needed while maintaining document structure.

MCP Server Fetch TypeScript_get_markdown_summary

Extracts and converts the main content area of a web page to Markdown format, automatically removing navigation menus, headers, footers, and other peripheral content. Perfect for capturing the core content of articles, blog posts, or documentation pages.

MCP Server Fetch Python_get-raw-text

Extracts raw text content directly from URLs without browser rendering. Ideal for structured data formats like JSON, XML, CSV, TSV, or plain text files. Best used when fast, direct access to the source content is needed without processing dynamic elements.

MCP Server Fetch Python_get-rendered-html

Fetches fully rendered HTML content using a headless browser, including JavaScript-generated content. Essential for modern web applications, single-page applications (SPAs), or any content that requires client-side rendering to be complete.

MCP Server Fetch Python_get-markdown

Converts web page content to well-formatted Markdown, preserving structural elements like tables and definition lists. Recommended as the default tool for web content extraction when a clean, readable text format is needed while maintaining document structure.

MCP Server Fetch Python_get-markdown-from-media

Performs AI-powered content extraction from media files (images and videos) and converts the results to Markdown format. Specialized tool for visual content analysis that utilizes computer vision and OCR capabilities to generate descriptive text from media sources.

Penrose MCP Server_create_domain

Create domain-specific language (DSL) definitions

Penrose MCP Server_create_substance

Define mathematical objects and relationships

Penrose MCP Server_create_style

Define visual representation rules

Penrose MCP Server_generate_diagram

Generate diagram from domain/substance/style

Brev_get_instance_types

Get available instances types for a cloud provider

Brev_create_workspace

Create a workspace from an instance type and cloud provider

Steel MCP Server_navigate

Navigate to a specified URL

Steel MCP Server_search

Perform a Google search by navigating to https://www.google.com/search?q=encodedQuery using the provided query text.

Steel MCP Server_click

Click an element on the page specified by its numbered label from the annotated screenshot

Steel MCP Server_type

Type text into an input field specified by its numbered label from the annotated screenshot. Optionally replace existing text first.

Steel MCP Server_scroll_down

Scroll down the page by a pixel amount - if no pixels are specified, scrolls down one page

Steel MCP Server_scroll_up

Scroll up the page by a pixel amount - if no pixels are specified, scrolls up one page

Steel MCP Server_go_back

Go back to the previous page in the browser history

Steel MCP Server_wait

Use this tool when a page appears to be loading or not fully rendered. Common scenarios include: when elements are missing from a screenshot that should be there, when a page looks incomplete or broken, when dynamic content is still loading, or when a previous action (like clicking a button) hasn't fully processed yet. Waits for a specified number of seconds (up to 10) to allow the page to finish loading or rendering.

Steel MCP Server_save_unmarked_screenshot

Capture a screenshot without bounding boxes and store it as a resource. Provide a resourceName to identify the screenshot. It's useful for when you want to view a page unobstructed by annotations or the user asks for a screenshot of the page.

LlamaCloud MCP Server_get_information

Get information from your knowledge base to answer questions.

Folderr_set_api_token

Set an API token for authentication (alternative to login)

Folderr_login

Login to Folderr with email and password

Folderr_list_assistants

List all available assistants

Folderr_ask_assistant

Ask a question to a specific assistant

Folderr_list_workflows

List all available workflows

Folderr_get_workflow_inputs

Get the required inputs for a workflow

Folderr_execute_workflow

Execute a workflow with the required inputs

Eyevinn Open Source Cloud MCP Server_osc_create_db

Create a new database instance in Eyevinn Open Source Cloud

Eyevinn Open Source Cloud MCP Server_osc_create_bucket

Create an S3 compatible bucket in Eyevinn Open Source Cloud

Eyevinn Open Source Cloud MCP Server_osc_create_vod

Create a VOD package using a VOD pipeline in Eyevinn Open Source Cloud

Eyevinn Open Source Cloud MCP Server_osc_create_vod_pipeline

Create a VOD pipeline in Eyevinn Open Source Cloud

Eyevinn Open Source Cloud MCP Server_osc_remove_vod_pipeline

Remove a VOD pipeline in Eyevinn Open Source Cloud

Upstash MCP Server_redis_database_create_new

Create a new Upstash redis database. NOTE: Ask user for the region and name of the database. NOTE: Don't show the database ID from the response to the user unless explicitly asked or needed.

Upstash MCP Server_redis_database_delete

Delete an Upstash redis database.

Upstash MCP Server_redis_database_list_databases

List all Upstash redis databases. Only their names and ids. NOTE: Don't show the database ID from the response to the user unless explicitly asked or needed.

Upstash MCP Server_timestamps_to_date

Use this tool to convert a timestamp to a human-readable date

Upstash MCP Server_redis_database_run_multiple_redis_commands

Run multiple Redis commands on a specific Upstash redis database

Upstash MCP Server_redis_database_run_single_redis_command

Run a single Redis command on a specific Upstash redis database. NOTE: For discovery, use SCAN over KEYS. Use TYPE to get the type of a key. NOTE: SCAN cursor [MATCH pattern] [COUNT count] [TYPE type]

Upstash MCP Server_redis_database_get_details

Get further details of a specific Upstash redis database. Includes all details of the database including usage statistics. db_disk_threshold: Total disk usage limit. db_memory_threshold: Maximum memory usage. db_daily_bandwidth_limit: Maximum daily network bandwidth usage. db_request_limit: Total number of commands allowed. All sizes are in bytes

NOTE: Don't show the database ID from the response to the user unless explicitly asked or needed.

Upstash MCP Server_redis_database_update_regions

Update the read regions of an Upstash redis database.

Upstash MCP Server_redis_database_reset_password

Reset the password of an Upstash redis database.

Upstash MCP Server_redis_database_get_usage_last_5_days

Get PRECISE command count and bandwidth usage statistics of an Upstash redis database over the last 5 days. This is a precise stat, not an average. NOTE: Ask user first if they want to see stats for each database seperately or just for one.

Upstash MCP Server_redis_database_get_stats

Get SAMPLED usage statistics of an Upstash redis database over a period of time (1h, 3h, 12h, 1d, 3d, 7d). Use this to check for peak usages and latency problems. Includes: read_latency_mean, write_latency_mean, keyspace, throughput (cmds/sec), diskusage NOTE: If the user does not specify which stat to get, use throughput as default.

Upstash MCP Server_redis_database_create_backup

Create a backup of a specific Upstash redis database. NOTE: Ask user to choose a name for the backup

Upstash MCP Server_redis_database_delete_backup

Delete a backup of a specific Upstash redis database.

Upstash MCP Server_redis_database_restore_backup

Restore a backup of a specific Upstash redis database. A backup can only be restored to the same database it was created from.

Upstash MCP Server_redis_database_list_backups

List all backups of a specific Upstash redis database.

Upstash MCP Server_redis_database_set_daily_backup

Enable or disable daily backups for a specific Upstash redis database.

Genkit MCP_echo

Echoes back the input

Genkit MCP_add

Adds two numbers

Genkit MCP_printEnv

Prints all environment variables, helpful for debugging MCP server configuration

Genkit MCP_longRunningOperation

Demonstrates a long running operation with progress updates

Genkit MCP_sampleLLM

Samples from an LLM using MCP's sampling feature

Genkit MCP_getTinyImage

Returns the MCP_TINY_IMAGE

mcp-server-motherduck_initialize-connection

Create a connection to either a local DuckDB or MotherDuck and retrieve available databases

mcp-server-motherduck_read-schemas

Get table schemas from a specific DuckDB/MotherDuck database

mcp-server-motherduck_execute-query

Execute a query on the MotherDuck (DuckDB) database

Memory Store MCP Server_search_web

Search the web using Google

Daytona MCP Python Interpreter_python_interpreter

Execute Python code in a Daytona workspace

MCP Svelte Docs Server_search_docs

Search Svelte documentation using specific technical terms and concepts. Returns relevant documentation sections with context.

Query Guidelines:

  • Use technical terms found in documentation (e.g., "route parameters", "state management", "lifecycle hooks")
  • Search for specific features or concepts rather than asking questions
  • Include relevant package names for targeted results (e.g., "sveltekit", "stores")

Example Queries by Category:

  1. Svelte 5 Runes:
  • "state management runes" (finds $state and state management docs)
  • "derived state calculation" (locates $derived documentation)
  • "effect lifecycle runes" (finds $effect usage patterns)
  • "bindable props svelte" (shows $bindable property usage)
  1. Component Patterns:
  • "component lifecycle" (finds lifecycle documentation)
  • "event handling svelte5" (shows new event handling patterns)
  • "component state management" (locates state management docs)
  • "props typescript definition" (finds prop typing information)
  1. SvelteKit Features:
  • "route parameters sveltekit" (finds routing documentation)
  • "server routes api" (locates API route docs)
  • "page data loading" (shows data loading patterns)
  • "form actions sveltekit" (finds form handling docs)
  1. Error Documentation:
  • "missing export error" (finds specific error docs)
  • "binding validation errors" (locates validation error info)
  • "lifecycle hook errors" (shows lifecycle-related errors)
  • "typescript prop errors" (finds prop typing errors)

Query Pattern Examples: "How do I manage state?" "state management runes" "What are lifecycle hooks?" "component lifecycle" "How do I handle events?" "event handling svelte5" "How do I create dynamic routes?" "route parameters sveltekit"

MCP Svelte Docs Server_get_next_chunk

Retrieve subsequent chunks of large documents

Google Custom Search Engine MCP Server_google_search

Search the custom search engine using the search term. Regular query arguments can also be used, like appending site.com or after:2024-04-30. If available and/or requested, the links of the search results should be used in a follow-up request using a different tool to get the full content. Example: "claude.ai features site.com after:2024-04-30"

MCP Server Diff TypeScript_get-unified-diff

Get the difference between two text articles in Unified diff format.

Bitbucket Server MCP_add_comment

Add a comment to a pull request

Bitbucket Server MCP_create_pull_request

Create a new pull request

Bitbucket Server MCP_get_pull_request

Get pull request details

Bitbucket Server MCP_merge_pull_request

Merge a pull request

Bitbucket Server MCP_decline_pull_request

Decline a pull request

Bitbucket Server MCP_get_diff

Get pull request diff

Bitbucket Server MCP_get_reviews

Get pull request reviews

MCP Server Diff Python_get-unified-diff

Get the difference between two text articles in Unified diff format. Use this when you want to extract the difference between texts.

Project Handoffs MCP Server_list_templates

List available templates for next steps, working sessions, and handoffs

Project Handoffs MCP Server_create_project

Create a new project for tracking AI session handoffs

Project Handoffs MCP Server_delete_project

Delete a project and all its data

Project Handoffs MCP Server_create_next_step

Create a new next step in a project

Project Handoffs MCP Server_start_working_session

Start working on a next step

Project Handoffs MCP Server_create_handoff

Complete a working session with handoff details

Project Handoffs MCP Server_get_latest_next_steps

Get open next steps ordered by priority

Project Handoffs MCP Server_get_next_step_history

Get complete history of a next step including session and handoff

Markdownify MCP Server_youtube-to-markdown

Convert a YouTube video to markdown, including transcript if available

Markdownify MCP Server_webpage-to-markdown

Convert a webpage to markdown

Markdownify MCP Server_xlsx-to-markdown

Convert an XLSX file to markdown

Markdownify MCP Server_audio-to-markdown

Convert an audio file to markdown, including transcription if possible

Markdownify MCP Server_bing-search-to-markdown

Convert a Bing search results page to markdown

Markdownify MCP Server_docx-to-markdown

Convert a DOCX file to markdown

Markdownify MCP Server_get-markdown-file

Get a markdown file by absolute file path

Markdownify MCP Server_image-to-markdown

Convert an image to markdown, including metadata and description

Markdownify MCP Server_pdf-to-markdown

Convert a PDF file to markdown

Markdownify MCP Server_pptx-to-markdown

Convert a PPTX file to markdown

Fetch MCP Server_fetch_html

Fetch a website and return the content as HTML

Fetch MCP Server_fetch_markdown

Fetch a website and return the content as Markdown

Fetch MCP Server_fetch_txt

Fetch a website, return the content as plain text (no HTML)

Fetch MCP Server_fetch_json

Fetch a JSON file from a URL

Super Windows CLI MCP Server_execute_command

Execute a command in the specified shell (powershell, cmd, or gitbash)

Example usage (PowerShell):

{ "shell": "powershell", "command": "Get-Process | Select-Object -First 5", "workingDir": "C:\Users\username" }

Example usage (CMD):

{ "shell": "cmd", "command": "dir /b", "workingDir": "C:\Projects" }

Example usage (Git Bash):

{ "shell": "gitbash", "command": "ls -la", "workingDir": "/c/Users/username" }
Super Windows CLI MCP Server_get_command_history

Get the history of executed commands

Example usage:

{ "limit": 5 }

Example response:

[ { "command": "Get-Process", "output": "...", "timestamp": "2024-03-20T10:30:00Z", "exitCode": 0 } ]
Super Windows CLI MCP Server_ssh_execute

Execute a command on a remote host via SSH

Example usage:

{ "connectionId": "raspberry-pi", "command": "uname -a" }

Configuration required in config.json:

{ "ssh": { "enabled": true, "connections": { "raspberry-pi": { "host": "raspberrypi.local", "port": 22, "username": "pi", "password": "raspberry" } } } }
Super Windows CLI MCP Server_ssh_disconnect

Disconnect from an SSH server

Example usage:

{ "connectionId": "raspberry-pi" }

Use this to cleanly close SSH connections when they're no longer needed.

MCP Server Starter_hello_tool

Hello tool

SwitchBot MCP Server_list_devices-
SwitchBot MCP Server_get_device_status-
SwitchBot MCP Server_control_device-
MCP JinaAI Reader Server_read_url

Convert any URL to LLM-friendly text using Jina.ai Reader

Dify MCP Server_antd-component-codegen-mcp-tool

Send a message to Dify chat API for generating antd biz components code

Test Runner MCP_run_tests

Run tests and capture output

Xano MCP Server_get_workspaces

Get all available workspaces

Xano MCP Server_create_table

Create a new table in a workspace

Xano MCP Server_get_table_content

Get content from a table

Xano MCP Server_add_table_content

Add content to a table

Xano MCP Server_update_table_content

Update content in a table

Xano MCP Server_get_all_tables

Get all tables in a workspace

Browser-Use MCP Server_run_browser_agent

Handle run-browser-agent tool calls.

MCP Server for Ticketmaster Events_search_ticketmaster

Search for events, venues, or attractions on Ticketmaster

MCP Tavily Search Server_tavily_search

Search the web using Tavily Search API, optimized for high-quality, factual results

MCP Tavily Search Server_tavily_get_search_context

Generate context for RAG applications using Tavily search

MCP Tavily Search Server_tavily_qna_search

Get direct answers to questions using Tavily search

MCP Windows Website Downloader Server_download

Download documentation website for RAG indexing

cooper-hewitt-mcp_search-objects

Search for objects in the Cooper Hewitt collection

cooper-hewitt-mcp_get-object

Get detailed information about a specific object

PolyMarket MCP Server_get-market-info

Get detailed information about a specific prediction market

PolyMarket MCP Server_list-markets

Get a list of prediction markets with optional filters

PolyMarket MCP Server_get-market-prices

Get current prices and trading information for a market

PolyMarket MCP Server_get-market-history

Get historical price and volume data for a market

Textwell MCP Server_write-text

Write text to Textwell application

Branch Thinking MCP Server_branch-thinking

A tool for managing multiple branches of thought with insights and cross-references.

Each thought can:

  • Belong to a specific branch
  • Generate insights
  • Create cross-references to other branches
  • Include confidence scores and key points

The system tracks:

  • Branch priorities and states
  • Relationships between thoughts
  • Accumulated insights
  • Cross-branch connections

Commands:

  • list: Show all branches and their status
  • focus [branchId]: Switch focus to a specific branch
  • history [branchId?]: Show the history of thoughts in a branch (uses active branch if none specified)
Iaptic MCP Server_customer_list

List customers from your Iaptic account.

  • Returns a paginated list of customers with their purchase status
  • Each customer includes:
    • Application username
    • Last purchase information
    • Subscription status (active/lapsed)
    • Renewal intent
    • Trial/introductory period status
  • Use limit and offset for pagination (default: 100 customers per page)
  • Results are ordered by creation date (newest first)
Iaptic MCP Server_customer_get

Get detailed information about a specific customer.

  • Returns complete customer profile including:
    • Application username
    • Purchase history
    • Active and expired subscriptions
    • Last purchase details
    • Subscription renewal status
    • Trial and introductory period information
  • Required: customerId parameter
Iaptic MCP Server_customer_add_purchase

Manually associate a customer with a purchase.

  • Links a purchase to a specific customer
  • Takes priority over receipt validation links
  • Useful for manual purchase management
  • Purchase format should be "platform", for example apple:123109519983
  • Required: customerId and purchaseId
Iaptic MCP Server_customer_subscription

Get customer's subscription status.

  • Returns active subscription details if any
  • Includes:
    • Subscription status and expiry
    • Payment and renewal information
    • Trial/introductory period status
  • Simpler alternative to customer_get for subscription-only apps
Iaptic MCP Server_customer_transactions

Get customer's transaction history.

  • Returns list of all transactions
  • Includes:
    • Payment details
    • Transaction status
    • Associated purchases
    • Timestamps
Iaptic MCP Server_purchase_list

List purchases from your Iaptic account.

  • Returns a paginated list of purchases
  • Use limit and offset for pagination (default: 100 per page)
  • Filter by date range using startdate and enddate (ISO format)
  • Filter by customerId to see purchases from a specific customer
  • Results include purchase status, product info, and transaction details
  • Results are ordered by purchase date (newest first)
Iaptic MCP Server_purchase_get

Get detailed information about a specific purchase.

  • Returns complete purchase details including:
    • Product information
    • Purchase status
    • Associated transactions
    • Customer information
    • Subscription details (if applicable)
  • Required: purchaseId parameter
Iaptic MCP Server_transaction_list

List financial transactions from your Iaptic account.

  • Returns a paginated list of transactions
  • Use limit and offset for pagination (default: 100 per page)
  • Filter by date range using startdate and enddate (ISO format)
  • Filter by purchaseId to see transactions for a specific purchase
  • Results include transaction status, amount, currency, and payment details
  • Results are ordered by transaction date (newest first)
  • Important: Use date filtering to avoid retrieving too many records
Iaptic MCP Server_transaction_get

Get detailed information about a specific transaction.

  • Returns complete transaction details including:
    • Transaction status
    • Amount and currency
    • Payment method details
    • Associated purchase information
    • Customer information
    • Timestamps and audit data
  • Required: transactionId parameter
Iaptic MCP Server_stats_get

Get general transactions, revenue and usage statistics from your Iaptic account.

  • Returns aggregated metrics including:
    • Total revenue
    • Number of active subscriptions
    • Customer growth metrics
    • Transaction success rates
    • Revenue by product type
  • Data is aggregated across all your applications
Iaptic MCP Server_stats_app

Get statistics specific to your application.

  • Returns app-specific metrics including:
    • App revenue and growth
    • Active subscriptions for this app
    • Customer metrics for this app
    • Product performance statistics
    • Transaction metrics
  • Uses the app name provided during server initialization
Iaptic MCP Server_stripe_prices

Get available Stripe products and prices.

  • Returns list of products with their associated prices
  • Each product includes:
    • Product ID and display name
    • Description and metadata
    • Available pricing offers
    • Subscription terms if applicable
  • Results are cached for 5 minutes
Iaptic MCP Server_event_list

List recent events from your Iaptic account.

  • Returns a paginated list of system events
  • Events include:
    • Receipt validations
    • Platform notifications (Apple/Google/etc)
    • Webhook deliveries
    • Purchase status changes
    • Subscription renewals
  • Use limit and offset for pagination
  • Results ordered by date (newest first)
Iaptic MCP Server_iaptic_switch_app

Switch to a different Iaptic app.

  • Allows temporarily using a different app's credentials
  • All subsequent API calls will use the new app name and API key
  • If using a master key, only the app name needs to be changed
  • Useful for managing multiple apps in the same session
  • Required: appName parameter (apiKey required only if not using master key)
Iaptic MCP Server_iaptic_reset_app

Reset to the default Iaptic app.

  • Reverts to the original app credentials provided during server initialization
  • All subsequent API calls will use the default app name and API key
  • Use this after using iaptic_switch_app to return to the default app
Iaptic MCP Server_iaptic_current_app

Get information about the currently active Iaptic app.

  • Returns the current app name
  • Indicates whether using default or custom credentials
  • Shows if using a master key for authentication
Coin Flip MCP Server_flip_coin

Flip a coin with n sides using true randomness from random.org. For 3-sided coins, try creative side names like:

  • past/present/future (temporal analysis)
  • true/unknown/false (epistemic states)
  • win/draw/lose (outcome evaluation)
  • rock/paper/scissors (cyclic relationships)
  • less/same/more (abstraction levels)
  • below/within/above (hierarchical positioning)
  • predecessor/current/successor (ordinal progression)

Meta-usage patterns:

  1. Use less/same/more to guide abstraction level of discourse
  2. Use past/present/future to determine temporal focus
  3. Chain multiple flips to create decision trees
  4. Use predecessor/current/successor for ordinal analysis

Ordinal Meta-patterns:

  • Use predecessor to refine previous concepts
  • Use current to stabilize existing patterns
  • Use successor to evolve into new forms

Default ternary values are -/0/+

MCP Starter Server_hello_tool

Hello tool

Xcode MCP Server_set_projects_base_dir

Set the base directory where Xcode projects are stored

Xcode MCP Server_set_project_path

Explicitly set the path to the Xcode project to work with

Xcode MCP Server_get_active_project

Get information about the currently active Xcode project

Xcode MCP Server_read_file

Read contents of a file in the Xcode project

Xcode MCP Server_write_file

Write or update contents of a file in the Xcode project

Xcode MCP Server_analyze_file

Analyze source file for issues and suggestions

Xcode MCP Server_build_project

Build the current Xcode project

Xcode MCP Server_run_tests

Run tests for the current Xcode project

Xcode MCP Server_list_project_files

List all files in an Xcode project

Anti-Bullshit MCP Server_analyze_claim

Analyze a claim using multiple epistemological frameworks and suggest validation steps

Anti-Bullshit MCP Server_validate_sources

Validate sources and evidence using configured framework

Anti-Bullshit MCP Server_check_manipulation

Check for manipulation tactics across different cultural contexts

SystemPrompt MCP Notion Server_systemprompt_list_notion_pages

Lists all accessible Notion pages in your workspace, sorted by last edited time. Returns key metadata including title, URL, and last edited timestamp.

SystemPrompt MCP Notion Server_systemprompt_list_notion_databases

Lists all accessible Notion databases in your workspace, sorted by last edited time. Returns key metadata including database title, schema, and last edited timestamp.

SystemPrompt MCP Notion Server_systemprompt_search_notion_pages

Performs a full-text search across all accessible Notion pages using the provided query. Searches through titles, content, and metadata to find relevant matches.

SystemPrompt MCP Notion Server_systemprompt_search_notion_pages_by_title

Searches specifically for Notion pages with titles matching the provided query. Useful for finding exact or similar title matches when you know the page name.

SystemPrompt MCP Notion Server_systemprompt_get_notion_page

Retrieves comprehensive details of a specific Notion page, including its content, properties, and metadata. Returns the complete page structure and all nested content blocks.

SystemPrompt MCP Notion Server_systemprompt_create_notion_page

Creates a rich, comprehensive Notion page that expands upon basic user inputs. Takes simple instructions and content, then generates a detailed, well-structured page with appropriate sections, formatting, and supplementary content.

SystemPrompt MCP Notion Server_systemprompt_update_notion_page

Updates an existing Notion page with rich, comprehensive content based on user instructions. Takes simple inputs and transforms them into well-structured, detailed page content while preserving existing information. Can enhance, reorganize, or expand the current content while maintaining page integrity.

SystemPrompt MCP Notion Server_systemprompt_delete_notion_page

Permanently deletes a specified Notion page and all its contents. This action cannot be undone, so use with caution.

IACR MCP Server_search_papers

Search for papers in the IACR Cryptology ePrint Archive

IACR MCP Server_get_paper_details

Retrieve details of a specific paper by its ID

IACR MCP Server_download_paper

Download a paper in PDF or TXT format

Linear MCP Server_create_issue

Create a new issue in Linear

Linear MCP Server_list_issues

List issues with optional filters

Linear MCP Server_update_issue

Update an existing issue

Linear MCP Server_list_teams

List all teams in the workspace

Linear MCP Server_list_projects

List all projects

Linear MCP Server_search_issues

Search for issues using a text query

Linear MCP Server_get_issue

Get detailed information about a specific issue

mcp-memory-libsql_create_entities

Create new entities with observations and optional embeddings

mcp-memory-libsql_search_nodes

Search for entities and their relations using text or vector similarity

mcp-memory-libsql_read_graph

Get recent entities and their relations

mcp-memory-libsql_create_relations

Create relations between entities

mcp-memory-libsql_delete_entity

Delete an entity and all its associated data (observations and relations)

mcp-memory-libsql_delete_relation

Delete a specific relation between entities

n8n Workflow Builder MCP Server_delete_workflow

Delete a workflow by ID

n8n Workflow Builder MCP Server_activate_workflow

Activate a workflow by ID

n8n Workflow Builder MCP Server_deactivate_workflow

Deactivate a workflow by ID

n8n Workflow Builder MCP Server_list_workflows

List all workflows from n8n

n8n Workflow Builder MCP Server_create_workflow

Create a new workflow in n8n

n8n Workflow Builder MCP Server_get_workflow

Get a workflow by ID

n8n Workflow Builder MCP Server_update_workflow

Update an existing workflow

n8n Workflow Builder MCP Server_list_executions

List all executions from n8n with optional filters

n8n Workflow Builder MCP Server_get_execution

Get details of a specific execution by ID

n8n Workflow Builder MCP Server_delete_execution

Delete an execution by ID

MCP Web Research Server_deep_research

Perform deep research on a topic with content extraction and analysis

MCP Web Research Server_parallel_search

Perform multiple Google searches in parallel

MCP Web Research Server_visit_page

Visit a webpage and extract its content

Holaspirit MCP Server_list_tasks

List all tasks in the organization

Holaspirit MCP Server_list_metrics

List all metrics in the organization

Holaspirit MCP Server_list_circles

List all circles in the organization

Holaspirit MCP Server_get_circle

Get details of a specific circle

Holaspirit MCP Server_list_roles

List all roles in the organization

Holaspirit MCP Server_get_role

Get details of a specific role

Holaspirit MCP Server_list_domains

List all domains in the organization

Holaspirit MCP Server_list_policies

List all policies in the organization

Holaspirit MCP Server_list_meetings

List all meetings in the organization

Holaspirit MCP Server_get_meeting

Get details of a specific meeting

Placid MCP Server_placid_list_templates

Get a list of available Placid templates with optional filtering. Each template includes its title, ID, preview image URL, available layers, and tags.

Placid MCP Server_placid_generate_image

Generate an image using a template and provided assets

Placid MCP Server_placid_generate_video

Generate a video using one or more templates and provided assets. Every 10 seconds of video uses 10 credits.

MCP Notes Server_list-all-notes

Read all stored notes

MCP Notes Server_update-note

Update an existing note

MCP Notes Server_delete-note

Delete an existing note

MCP Notes Server_add-note

Create a new note

Scrapbox Cosense MCP Server_create_page
Create a new page in my-research-notes project on cosense (scrapbox) Creates a new page with the specified title and optional body text. The page will be opened in your default browser.
Scrapbox Cosense MCP Server_get_page
Get a page from my-research-notes project on cosense (scrapbox) Returns page content and its linked pages. Page content includes title and description in plain text format.
Scrapbox Cosense MCP Server_list_pages
List pages from my-research-notes project on cosense (scrapbox) with flexible sorting options. Available sorting methods: - updated: Sort by last update time - created: Sort by creation time - accessed: Sort by access time - linked: Sort by number of incoming links - views: Sort by view count - title: Sort by page title
Scrapbox Cosense MCP Server_search_pages
Search pages in my-research-notes project on cosense (scrapbox) Supports various search features: - Basic search: "keyword" - Multiple keywords: "word1 word2" (AND search) - Exclude words: "word1 -word2" - Exact phrase: "\"exact phrase\""
Keboola Explorer MCP Server_get_bucket_metadata

Get detailed information about a specific bucket.

Keboola Explorer MCP Server_list_bucket_info

List information about all buckets in the project.

Keboola Explorer MCP Server_list_bucket_tables

List all tables in a specific bucket with their basic information.

Keboola Explorer MCP Server_get_table_metadata

Get detailed information about a specific table including its DB identifier and column information.

Keboola Explorer MCP Server_query_table
Executes an SQL SELECT query to get the data from the underlying snowflake database. * When constructing the SQL SELECT query make sure to use the fully qualified table names that include the database name, schema name and the table name. * The fully qualified table name can be found in the table information, use a tool to get the information about tables. The fully qualified table name can be found in the response for that tool. * Snowflake is case-sensitive so always wrap the column names in double quotes. Examples: * SQL queries must include the fully qualified table names including the database name, e.g.: SELECT * FROM "db_name"."db_schema_name"."table_name";
Keboola Explorer MCP Server_list_components

List all available components and their configurations.

Keboola Explorer MCP Server_list_component_configs

List all configurations for a specific component.

MCP Terminal Server_execute_command

Execute a command in the local system

mcp-shell-server_shell_execute

Execute a shell command Allowed commands: grep, find, echo, cat, ls

MCP Web Browser Server_browse_to
Navigate to a specific URL and return the page's HTML content. Args: url: The full URL to navigate to context: Optional context object for logging (ignored) Returns: The full HTML content of the page
MCP Web Browser Server_extract_text_content
Extract text content from the current page, optionally using a CSS selector. Args: selector: Optional CSS selector to target specific elements context: Optional context object for logging (ignored) Returns: Extracted text content
MCP Web Browser Server_click_element
Click an element on the current page. Args: selector: CSS selector for the element to click context: Optional context object for logging (ignored) Returns: Confirmation message or error details
MCP Web Browser Server_get_page_screenshots
Capture screenshot of the current page. Args: full_page: Whether to capture the entire page or just the viewport selector: Optional CSS selector to screenshot a specific element context: Optional context object for logging (ignored) Returns: Base64 encoded screenshot image
MCP Web Browser Server_get_page_links
Extract all links from the current page. Args: context: Optional context object for logging (ignored) Returns: List of links found on the page
MCP Web Browser Server_input_text
Input text into a specific element on the page. Args: selector: CSS selector for the input element text: Text to input context: Optional context object for logging (ignored) Returns: Confirmation message
Project Content Server_latest_project_data

Get latest project data including file names and contents

Duck Duck MCP_search

Search the web using DuckDuckGo

MCP Rand_roll_dice

Roll a set of dice using standard dice notation (e.g., "2d6" for two six-sided dice, "3d6+5" for three six-sided dice plus 5)

MCP Rand_generate_uuid

Generate a random UUID v4

MCP Rand_generate_random_number

Generate a random number within a specified range

MCP Rand_generate_gaussian

Generate a random number following a Gaussian (normal) distribution between 0 and 1

MCP Rand_generate_string

Generate a random string with specified length and character set

MCP Rand_draw_cards

Draw cards from a standard deck of playing cards

MCP Rand_generate_password

Generate a strong password with a mix of character types. WARNING: While this password is generated locally on your machine, it is recommended to use a dedicated password manager for generating and storing passwords securely.

MCP2Brave_search_brave_with_summary

Search the web using Brave Search API

MCP2Brave_brave_search_summary

Brave

MCP2Brave_get_url_content_direct

Get webpage content directly using HTTP request

Args: url (str): The URL to fetch content from Returns: str: The webpage content and metadata
MCP2Brave_url_content
: url (str): : str:
MCP2Brave_search_news

Search news using Brave News API

Args: query (str): The search query for news Returns: str: News search results including titles, sources, dates and descriptions
MCP2Brave_search_news_info

BraveAPI

: query (str): : str:
MCP TODO Checklist Server_todo_show

Mostra os detalhes de uma lista especfica

MCP TODO Checklist Server_todo_complete

Marca uma tarefa como concluda

MCP TODO Checklist Server_todo_create

Cria uma nova lista de tarefas

MCP TODO Checklist Server_todo_add

Adiciona uma nova tarefa lista

MCP TODO Checklist Server_todo_list

Lista todas as listas de tarefas

UseScraper MCP Server_scrape

Scrape content from a webpage using UseScraper API

iTerm MCP Server_write_to_terminal

Writes text to the active iTerm terminal - often used to run a command in the terminal

iTerm MCP Server_read_terminal_output

Reads the output from the active iTerm terminal

iTerm MCP Server_send_control_character

Sends a control character to the active iTerm terminal (e.g., Control-C)

Code Snippet Server_create_snippet

Create a snippet (specify title, language, and code)

Code Snippet Server_list_snippets

List snippets (can filter by language or tags)

Code Snippet Server_delete_snippet

Delete a snippet (specify ID)

Twitter MCP Server_createList

Create a new Twitter list

Twitter MCP Server_postTweet

Post a tweet to Twitter

Twitter MCP Server_addUserToList

Add a user to a Twitter list

Twitter MCP Server_postTweetWithMedia

Post a tweet with media attachment to Twitter

Twitter MCP Server_likeTweet

Like a tweet by its ID

Twitter MCP Server_unlikeTweet

Unlike a previously liked tweet

Twitter MCP Server_getLikedTweets

Get a list of tweets liked by a user

Twitter MCP Server_searchTweets

Search for tweets using a query string

Twitter MCP Server_replyToTweet

Reply to a tweet

Twitter MCP Server_getUserTimeline

Get recent tweets from a user timeline

Twitter MCP Server_getTweetById

Get a tweet by its ID

Twitter MCP Server_getUserInfo

Get information about a Twitter user

Twitter MCP Server_getTweetsByIds

Get multiple tweets by their IDs

Twitter MCP Server_retweet

Retweet a tweet by its ID

Twitter MCP Server_undoRetweet

Undo a retweet by its ID

Twitter MCP Server_getRetweets

Get a list of retweets of a tweet

Twitter MCP Server_followUser

Follow a user by their username

Twitter MCP Server_unfollowUser

Unfollow a user by their username

Twitter MCP Server_getFollowers

Get followers of a user

Twitter MCP Server_getFollowing

Get a list of users that a user is following

Twitter MCP Server_removeUserFromList

Remove a user from a Twitter list

Twitter MCP Server_getListMembers

Get members of a Twitter list

Twitter MCP Server_getUserLists

Get lists owned by a user

Twitter MCP Server_getHashtagAnalytics

Get analytics for a specific hashtag

Twitter MCP Server_deleteTweet

Delete a tweet by its ID

Metal MCP Server_search_metal_docs

Search Metal Framework documentation and code examples using natural language queries

Metal MCP Server_generate_metal_code

Generate Metal Framework code for common tasks

Sequential Thinking MCP Server_sequential_thinking
An advanced tool for dynamic and reflective problem-solving through structured thoughts. Args: thought: The content of the current thought thought_number: Current position in the sequence total_thoughts: Expected total number of thoughts next_thought_needed: Whether another thought should follow stage: Current thinking stage (e.g., "Problem Definition", "Analysis") is_revision: Whether this revises a previous thought revises_thought: Number of thought being revised branch_from_thought: Starting point for a new thought branch branch_id: Identifier for the current branch needs_more_thoughts: Whether additional thoughts are needed score: Quality score (0.0 to 1.0) tags: Categories or labels for the thought Returns: JSON string containing thought analysis and metadata
Sequential Thinking MCP Server_get_thinking_summary
Generate a comprehensive summary of the entire thinking process. Returns: JSON string containing analysis of thought history
Sequential Thinking MCP Server_clear_thinking_history
Clear all recorded thoughts and reset the server state. Returns: Confirmation message
Elasticsearch MCP Server_list_indices

List all indices in the Elasticsearch cluster

Elasticsearch MCP Server_get_mapping

Get index mapping

Elasticsearch MCP Server_get_settings

Get index settings

Elasticsearch MCP Server_search_documents

Search documents in an index with a custom query

Elasticsearch MCP Server_get_cluster_health

Get cluster health status

Elasticsearch MCP Server_get_cluster_stats

Get cluster statistics

Zig MCP Server_optimize_code

Optimize Zig code for better performance

Zig MCP Server_estimate_compute_units

Estimate computational complexity and resource usage

Zig MCP Server_generate_code

Generate Zig code from natural language description

Zig MCP Server_get_recommendations

Get code improvement recommendations and best practices

mcp-server-chatsum_query_chat_messages

query chat messages with given parameters

mcp-server-collector_extract-mcp-servers-from-content

Extract MCP Servers from given content

mcp-server-collector_extract-mcp-servers-from-url

Extract MCP Servers from a URL

mcp-server-collector_submit-mcp-server

Submit MCP Server to MCP Servers Directory like mcp.so

Loxo MCP Server_get-activity-types

Get a list of activity types from Loxo

Loxo MCP Server_spark-search-activity-types

Get a list of activity types from Spark Search

Loxo MCP Server_get-todays-tasks

Get all tasks and scheduled activities for today

Loxo MCP Server_get-call-queue

Get the current call queue

Loxo MCP Server_add-to-call-queue

Add a candidate or contact to the call queue

Loxo MCP Server_schedule-activity

Schedule a future activity (like a call or meeting)

Loxo MCP Server_search-candidates

Search for candidates in Loxo with specific criteria

Loxo MCP Server_get-candidate

Get detailed information about a specific candidate

Loxo MCP Server_search-jobs

Search for jobs in Loxo

Loxo MCP Server_get-job

Get detailed information about a specific job

Loxo MCP Server_add-note

Add a note to a candidate or job

Loxo MCP Server_log-activity

Log an activity for a candidate or job

Email Checker MCP Server_verify_email
Verify an email address using the 2ip.me API. Args: email (str): The email address to verify Returns: str: "true" or "false" indicating if the email is valid
MCP Webscan Server_extract-links

Extract and analyze all hyperlinks from a web page, organizing them into a structured format with URLs, anchor text, and contextual information. Performance-optimized with stream processing and worker threads for efficient handling of large pages. Works with either a direct URL or raw HTML content. Handles relative and absolute URLs properly by supporting an optional base URL parameter. Results can be limited to prevent overwhelming output for link-dense pages. Returns a comprehensive link inventory that includes destination URLs, link text, titles (if available), and whether links are internal or external to the source domain. Useful for site mapping, content analysis, broken link checking, SEO analysis, and as a preparatory step for targeted crawling operations.

MCP Webscan Server_crawl-site

Crawl a website and return a list of all the URLs found

MCP Webscan Server_check-links

Check for broken links on a page

MCP Webscan Server_fetch-page

Fetch a web page and convert it to Markdown

MCP Webscan Server_find-patterns

Find all links that match a given pattern

MCP Webscan Server_generate-site-map

Generate a sitemap for a website

AiDD MCP Server_get_allowed_directory

Get the current working directory that this server is allowed to access.

AiDD MCP Server_write_file

Create a new file or overwrite an existing file with new content. Use this to save changes, create new files, or update existing ones. Use with caution as it will overwrite existing files without warning. Path must be relative to the allowed directory. Creates parent directories if needed. Example: Path='notes.txt', Content='Meeting notes for project X'

AiDD MCP Server_update_allowed_directory

Change the working directory that this server is allowed to access. Use this to switch between different projects.

AiDD MCP Server_create_directory

Create a new directory or ensure a directory exists. Can create multiple nested directories in one operation. If the directory already exists, this operation will succeed silently. Useful for setting up project structure or organizing files. Only works within the allowed directory. Example: Enter 'src/components' to create nested directories.

AiDD MCP Server_edit_file

Make line-based edits to a text file. Each edit replaces exact line sequences with new content. Returns a git-style diff showing the changes made. Only works within the allowed directory. Always use dryRun first to preview changes before applying them.

AiDD MCP Server_list_directory

Get a detailed listing of files and directories in the specified path. This tool is essential for understanding directory structure and finding specific files within a directory. Only works within the allowed directory. Example: Enter 'src' to list contents of the src directory, or '.' for current directory.

AiDD MCP Server_read_file

Read the complete contents of a file from the file system. Handles various text encodings and provides detailed error messages if the file cannot be read. Use this tool when you need to examine the contents of a single file. Only works within the allowed directory.Example: Enter 'src/main.py' to read a Python file.

AiDD MCP Server_read_multiple_files

Read the contents of multiple files simultaneously. This is more efficient than reading files one by one when you need to analyze or compare multiple files. Each file's content is returned with its path as a reference. Failed reads for individual files won't stop the entire operation. Only works within the allowed directory.Example: Enter ['src/main.py', 'README.md'] to read both files.

AiDD MCP Server_move_file

Move or rename a file or directory to a new location. This tool can be used to reorganize files and directories. Both source and destination must be within the allowed directory. If the destination already exists, the operation will fail. Parent directories of the destination will be created if they don't exist. Example: source='old.txt', destination='new/path/new.txt'

AiDD MCP Server_search_files

Search for files and directories matching a pattern. The search is recursive and case-insensitive. Only searches within the allowed directory. Returns paths relative to the allowed directory. Searches in file and directory names, not content. For searching within file contents, use the tree_sitter_map tool which can locate specific code elements like functions and classes. Example: pattern='.py' finds all Python files, pattern='test' finds all items with 'test' in the name.

AiDD MCP Server_delete_file

Delete a file or empty directory from the file system. Use with caution as this operation cannot be undone. For safety, this tool will not delete non-empty directories. Only works within the allowed directory. Example: path='old_file.txt' removes the specified file.

AiDD MCP Server_get_file_info

Get detailed information about a file or directory. Returns size, creation time, modification time, access time, type (file/directory), and permissions. All times are in ISO 8601 format. This tool is perfect for understanding file characteristics without reading the actual content. Only works within the allowed directory. Example: path='src/main.py' returns details about main.py

AiDD MCP Server_directory_tree

Get a recursive tree view of files and directories in the specified path as a JSON structure. Each entry includes 'name', 'type' (file/directory), and 'children' for directories. Files have no children array, while directories always have a children array (which may be empty). The output is formatted with 2-space indentation for readability. Only works within the allowed directory. Useful for understanding project structure. Example: Enter '.' for current directory, or 'src' for a specific directory.

AiDD MCP Server_execute_code

Execute arbitrary code in various programming languages on the user's local machine within the current working directory. Supported languages: python, javascript, ruby, php, go, rust. Always review the code carefully before execution to prevent unintended consequences. You MUST explicitly show the user the code that will be executed and get his confirmation before using this tool. Examples: - Python: code='print(sum(range(10)))'. - JavaScript: code='console.log(Array.from({length: 5}, (_, i) => i*2))'. - Ruby: code='puts (1..5).reduce(:+)'.

AiDD MCP Server_execute_shell_script

Execute a shell script (bash/sh) on the user's local machine within the current working directory. This tool can execute shell commands and scripts for system automation and management tasks. It is designed to perform tasks on the user's local environment, such as opening applications, installing packages and more. Always review the script carefully before execution to prevent unintended consequences. You MUST explicitly show the user the script that will be executed and get his confirmation before using this tool. Examples: - script='echo "Current directory:" && pwd'. - script='for i in {1..5}; do echo $i; done'.

AiDD MCP Server_tree_sitter_map

Build a tree-sitter based structural map of source code files. This tool analyzes code structure to identify classes, functions, and methods. Only analyzes files within the allowed directory. Useful for code analysis and understanding project structure. Example: Enter '.' to analyze all source files in current directory, or 'src' to analyze all files in the src directory.

AiDD MCP Server_git_init

Initialize a new Git repository. Creates a new Git repository in the specified directory. If the directory doesn't exist, it will be created. Directory must be within the allowed directory.

AiDD MCP Server_git_status

Shows the working tree status of a git repository. Returns information about staged, unstaged, and untracked files. Repository must be within the allowed directory.

AiDD MCP Server_git_diff_unstaged

Shows changes in working directory not yet staged for commit. Returns a unified diff format of all unstaged changes. Repository must be within the allowed directory.

AiDD MCP Server_git_diff_staged

Shows changes staged for commit. Returns a unified diff format of all staged changes. Repository must be within the allowed directory.

AiDD MCP Server_git_diff

Shows differences between branches or commits. Returns a unified diff format comparing current state with target. Repository must be within the allowed directory.

AiDD MCP Server_git_commit

Records changes to the repository. Commits all staged changes with the provided message. Repository must be within the allowed directory.

AiDD MCP Server_git_add

Adds file contents to the staging area. Stages specified files for the next commit. Repository must be within the allowed directory.

AiDD MCP Server_git_reset

Unstages all staged changes. Removes all files from the staging area. Repository must be within the allowed directory.

AiDD MCP Server_git_log

Shows the commit logs. Returns information about recent commits including hash, author, date, and message. Repository must be within the allowed directory.

AiDD MCP Server_git_create_branch

Creates a new branch. Creates a new branch from the specified base branch or current HEAD. Repository must be within the allowed directory.

AiDD MCP Server_git_checkout

Switches branches. Checks out the specified branch. Repository must be within the allowed directory.

AiDD MCP Server_git_show

Shows the contents of a commit. Returns detailed information about a specific commit including the changes it introduced. Repository must be within the allowed directory.

AiDD MCP Server_get_system_info

Get detailed system information including OS, CPU, memory, disk, and network details (such as WiFi network name). This tool provides comprehensive information about the system environment. Also returns the current working directory (allowed directory) of the AiDD MCP server. Useful for system analysis, debugging, environment verification, and workspace management.

mcp-clickhouse_list_tables-
mcp-clickhouse_run_select_query-
mcp-clickhouse_list_databases-
Replicate MCP Server_search_models

Search for models using semantic search

Replicate MCP Server_list_models

List available models with optional filtering

Replicate MCP Server_list_collections

List available model collections

Replicate MCP Server_get_collection

Get details of a specific collection

Replicate MCP Server_create_prediction

Create a new prediction using either a model version (for community models) or model name (for official models)

Replicate MCP Server_cancel_prediction

Cancel a running prediction

Replicate MCP Server_get_prediction

Get details about a specific prediction

Replicate MCP Server_list_predictions

List recent predictions

Replicate MCP Server_get_model

Get details of a specific model including available versions

Replicate MCP Server_view_image

Display an image in the system's default web browser

Replicate MCP Server_clear_image_cache

Clear the image viewer cache

Replicate MCP Server_get_image_cache_stats

Get statistics about the image cache

Cloudinary MCP Server_upload

Upload media (images/videos) to Cloudinary. For large files, the upload is processed in chunks and returns a streaming response. The uploaded asset will be available at:

  • HTTP: http://res.cloudinary.com/{cloud_name}/{resource_type}/upload/v1/{public_id}.{format}
  • HTTPS: https://res.cloudinary.com/{cloud_name}/{resource_type}/upload/v1/{public_id}.{format} where cloud_name='dadljfaoz', resource_type is 'image' or 'video', and format is determined by the file extension.
MCP Browser Tabs Server_get_tabs

Get all open tabs from Google Chrome browser

MCP Browser Tabs Server_close_tab

Close a specific tab in Google Chrome by window and tab index. When closing multiple tabs, start from the highest index numbers to avoid index shifting. After closing tabs, use get_tabs to confirm the changes.

Tavily Search MCP Agent_comprehensive_search
Perform a comprehensive search across multiple topics using Tavily. Args: query: The search query to research
DynamoDB MCP Server_create_table

Creates a new DynamoDB table with specified configuration

DynamoDB MCP Server_update_capacity

Updates the provisioned capacity of a table

DynamoDB MCP Server_put_item

Inserts or replaces an item in a table

DynamoDB MCP Server_get_item

Retrieves an item from a table by its primary key

DynamoDB MCP Server_query_table

Queries a table using key conditions and optional filters

DynamoDB MCP Server_scan_table

Scans an entire table with optional filters

DynamoDB MCP Server_describe_table

Gets detailed information about a DynamoDB table

DynamoDB MCP Server_list_tables

Lists all DynamoDB tables in the account

DynamoDB MCP Server_create_gsi

Creates a global secondary index on a table

DynamoDB MCP Server_update_gsi

Updates the provisioned capacity of a global secondary index

DynamoDB MCP Server_create_lsi

Creates a local secondary index on a table (must be done during table creation)

DynamoDB MCP Server_update_item

Updates specific attributes of an item in a table

github-manager MCP Server_list_orgs

List GitHub organizations the authenticated user belongs to

github-manager MCP Server_list_repos

List repositories in an organization

github-manager MCP Server_create_repo

Create a new repository in an organization

github-manager MCP Server_add_collaborator

Add a collaborator to a repository

github-manager MCP Server_update_repo_settings

Update repository settings

Zotero MCP Connector_get_collections

List all collections in the local Zotero library.

Zotero MCP Connector_get_collection_items

Gets all items in a specific Zotero collection.

Zotero MCP Connector_get_item_details

Get detailed information about a specific item in the library

Zotero MCP Connector_get_tags

Get tags used in the Zotero library

Zotero MCP Connector_get_recent

Get recently added items (e.g. papers or attachements) to your library

Zotero MCP Connector_search_library

Search the local Zotero library of the user.

Things MCP Server_get-areas

Get all areas from Things

Things MCP Server_get-inbox

Get todos from Inbox

Things MCP Server_get-today

Get todos due today

Things MCP Server_get-upcoming

Get upcoming todos

Things MCP Server_get-anytime

Get todos from Anytime list

Things MCP Server_get-someday

Get todos from Someday list

Things MCP Server_get-todos

Get todos from Things, optionally filtered by project

Things MCP Server_get-projects

Get all projects from Things

Things MCP Server_get-logbook

Get completed todos from Logbook, defaults to last 7 days

Things MCP Server_get-trash

Get trashed todos

Things MCP Server_get-tags

Get all tags

Things MCP Server_get-tagged-items

Get items with a specific tag

Things MCP Server_search-todos

Search todos by title or notes

Things MCP Server_search-advanced

Advanced todo search with multiple filters

Things MCP Server_get-recent

Get recently created items

Things MCP Server_add-todo

Create a new todo in Things

Things MCP Server_add-project

Create a new project in Things

Things MCP Server_update-todo

Update an existing todo in Things

Things MCP Server_update-project

Update an existing project in Things

Things MCP Server_show-item

Show a specific item or list in Things

Things MCP Server_search-items

Search for items in Things

Redmine MCP Server_list_issues

List and search Redmine issues. Provides flexible filtering and sorting options. Supports filtering by custom fields using field IDs and patterns. Available since Redmine 1.0

Redmine MCP Server_create_issue

Create a new issue. Requires project ID and subject fields. Returns success or validation error status. Available since Redmine 1.0

Redmine MCP Server_list_projects

List all accessible projects. Shows both public projects and authorized private projects. Includes trackers, categories, modules and custom fields. Available since Redmine 1.0

Redmine MCP Server_update_issue

Update an existing issue. Modify any issue fields as needed. Returns success or validation error status. Available since Redmine 1.0

Redmine MCP Server_delete_issue

Delete an issue permanently. This action cannot be undone. Returns success status on completion. Available since Redmine 1.0

Redmine MCP Server_add_issue_watcher

Add a user as watcher to an issue. Enables user to receive issue updates. Available since Redmine 1.0

Redmine MCP Server_remove_issue_watcher

Remove a user from issue watchers. Stops issue update notifications. Available since Redmine 1.0

Redmine MCP Server_show_project

Get detailed project information. Specify using project ID or key. Supports retrieving additional data. Available since Redmine 1.0

Redmine MCP Server_create_project

Create a new project. Provide name and key. Configure optional settings like modules and trackers. Available since Redmine 1.0

Redmine MCP Server_update_project

Update project settings. Specify ID or key to identify project. Only specified fields will be changed. Available since Redmine 1.0

Redmine MCP Server_archive_project

Archive a project. Project becomes read only. Available since Redmine 5.0

Redmine MCP Server_unarchive_project

Restore an archived project. Project becomes editable again. Available since Redmine 5.0

Redmine MCP Server_delete_project

Delete project permanently. Deletes all project data and subprojects. This action cannot be undone. Available since Redmine 1.0

Redmine MCP Server_list_time_entries

List and search logged time records. Filter by user, project and date range. Returns up to 100 entries per request. Available since Redmine 1.1

Redmine MCP Server_show_time_entry

Get details of a time record. Returns complete information. Available since Redmine 1.1

Redmine MCP Server_create_time_entry

Record spent time on projects or issues. Hours and project or issue ID required. Activity type ID required if no default exists. Available since Redmine 1.1

Redmine MCP Server_update_time_entry

Update an existing time record. Modify hours, activity and comments. Cannot change project after creation. Available since Redmine 1.1

Redmine MCP Server_delete_time_entry

Delete a time record permanently. This action cannot be undone. Available since Redmine 1.1

Redmine MCP Server_list_users

List all users in the system. Shows active and locked accounts. Admin privileges required. Available since Redmine 1.1

Redmine MCP Server_show_user

Get details of a specific user. Use 'current' to get your own info. Returned fields depend on privileges. Available since Redmine 1.1

Redmine MCP Server_create_user

Create a new user account. Admin privileges required. Returns success or validation error status. Available since Redmine 1.1

Redmine MCP Server_update_user

Update an existing user. Admin privileges required. Returns success or validation error status. Available since Redmine 1.1

Redmine MCP Server_delete_user

Delete a user permanently. Admin privileges required. This action cannot be undone. Available since Redmine 1.1

MCP Reasoner_mcp-reasoner

Advanced reasoning tool with multiple strategies including Beam Search and Monte Carlo Tree Search

Penumbra MCP Server_get_validator_set

Get the current validator set information

Penumbra MCP Server_get_chain_status

Get current chain status including block height and chain ID

Penumbra MCP Server_get_transaction

Get details of a specific transaction

Penumbra MCP Server_get_dex_state

Get current DEX state including latest batch auction results

Penumbra MCP Server_get_governance_proposals

Get active governance proposals

Puppeteer MCP Server_puppeteer_navigate

Navigate to a URL

Puppeteer MCP Server_puppeteer_page_history

Get the history of visited URLs, most recent urls first

Puppeteer MCP Server_make_http_request

Make an HTTP request with curl

Puppeteer MCP Server_semantic_search_requests

Semantically search for requests that occurred within a page URL. Returns the top 10 results.

Redis MCP Server_hmset

Set multiple hash fields to multiple values

Redis MCP Server_hget

Get the value of a hash field

Redis MCP Server_hgetall

Get all the fields and values in a hash

Redis MCP Server_scan

Scan Redis keys matching a pattern

Redis MCP Server_set

Set string value with optional NX (only if not exists) and PX (expiry in milliseconds) options

Redis MCP Server_get

Get string value

Redis MCP Server_del

Delete a key

Redis MCP Server_zadd

Add one or more members to a sorted set

Redis MCP Server_zrange

Return a range of members from a sorted set by index

Redis MCP Server_zrangebyscore

Return members from a sorted set with scores between min and max

Redis MCP Server_zrem

Remove one or more members from a sorted set

Redis MCP Server_sadd

Add one or more members to a set

Redis MCP Server_smembers

Get all members in a set

GitHub MCP Server_create_or_update_file

Create or update a single file in a GitHub repository

GitHub MCP Server_search_repositories

Search for GitHub repositories

GitHub MCP Server_create_repository

Create a new GitHub repository in your account

GitHub MCP Server_get_file_contents

Get the contents of a file or directory from a GitHub repository

GitHub MCP Server_push_files

Push multiple files to a GitHub repository in a single commit

GitHub MCP Server_create_issue

Create a new issue in a GitHub repository

GitHub MCP Server_create_pull_request

Create a new pull request in a GitHub repository

GitHub MCP Server_fork_repository

Fork a GitHub repository to your account or specified organization

GitHub MCP Server_create_branch

Create a new branch in a GitHub repository

MCP Server Replicate_generate_image

Generate an image using the specified parameters.

MCP Server Replicate_list_models

List available models on Replicate with optional filtering by owner.

MCP Server Replicate_search_models

Search for models using semantic search.

MCP Server Replicate_list_collections

List available model collections on Replicate.

MCP Server Replicate_get_collection_details

Get detailed information about a specific collection.

MCP Server Replicate_list_hardware

List available hardware options for running models.

MCP Server Replicate_list_templates

List all available templates with their schemas.

MCP Server Replicate_validate_template_parameters

Validate parameters against a template schema.

MCP Server Replicate_create_prediction

Create a new prediction using a specific model version on Replicate.

Args: input: Model input parameters including version or model details confirmed: Whether the user has explicitly confirmed the generation Returns: Prediction details if confirmed, or a confirmation request if not
MCP Server Replicate_get_prediction

Get the status and results of a prediction.

MCP Server Replicate_cancel_prediction

Cancel a running prediction.

MCP Server Replicate_get_webhook_secret

Get the signing secret for verifying webhook requests.

MCP Server Replicate_verify_webhook

Verify that a webhook request came from Replicate using HMAC-SHA256.

Args: payload: The webhook payload to verify signature: The signature from the X-Replicate-Signature header secret: The webhook signing secret from get_webhook_secret Returns: True if signature is valid, False otherwise
MCP Server Replicate_search_available_models

Search for available models matching the query.

Args: query: Search query describing the desired model style: Optional style to filter by Returns: List of matching models with scores
MCP Server Replicate_get_model_details

Get detailed information about a specific model.

Args: model_id: Model identifier in format owner/name Returns: Detailed model information
MCP Server Replicate_subscribe_to_generation

Handle resource subscription requests.

MCP Server Replicate_unsubscribe_from_generation

Handle resource unsubscribe requests.

MCP Server Replicate_open_image_with_system

Open an image URL with the system's default application.

Args: image_url: URL of the image to open Returns: Dict containing status of the operation
IAC Memory MCP Server_get_terraform_provider_info

Retrieve comprehensive information about a Terraform provider

IAC Memory MCP Server_list_terraform_providers

List all cached Terraform providers with basic metadata

IAC Memory MCP Server_get_provider_version_history

Retrieve version history for a specific Terraform provider

IAC Memory MCP Server_get_terraform_resource_info

Retrieve comprehensive information about a Terraform resource including schema and documentation

IAC Memory MCP Server_list_provider_resources

List all resources associated with a specific Terraform provider

IAC Memory MCP Server_get_ansible_collection_info

Retrieve comprehensive information about an Ansible collection

IAC Memory MCP Server_list_ansible_collections

List all cached Ansible collections with basic metadata

IAC Memory MCP Server_get_collection_version_history

Retrieve version history for a specific Ansible collection

IAC Memory MCP Server_get_ansible_module_info

Retrieve comprehensive information about an Ansible module including schema and documentation

IAC Memory MCP Server_get_resource_version_compatibility

Check resource compatibility across provider versions

IAC Memory MCP Server_add_terraform_provider

Add a new Terraform provider to the memory store with version and documentation information

IAC Memory MCP Server_update_provider_version

Update an existing Terraform provider's version information and documentation links

IAC Memory MCP Server_add_terraform_resource

Add a new Terraform resource definition with its schema and version information

IAC Memory MCP Server_update_resource_schema

Update an existing Terraform resource's schema and related information

IAC Memory MCP Server_add_ansible_collection

Add a new Ansible collection to the memory store with version and documentation information

IAC Memory MCP Server_update_collection_version

Update an existing Ansible collection's version information and documentation links

IAC Memory MCP Server_add_ansible_module

Add a new Ansible module definition with its schema and version information

IAC Memory MCP Server_update_module_version

Update an existing Ansible module's schema and related information

IAC Memory MCP Server_get_module_version_compatibility

Check module compatibility across collection versions

IAC Memory MCP Server_create_entity

Create a new entity in the knowledge graph with optional initial observations

IAC Memory MCP Server_update_entity

Update an existing entity's properties and add new observations

IAC Memory MCP Server_delete_entity

Remove an entity and its relationships from the knowledge graph

IAC Memory MCP Server_view_relationships

Retrieve all relationships and observations for a specific entity

Discord Raw API MCP Server_discord_api

Execute raw Discord API commands. Supports both REST API calls and application commands.

MCP Neo4j Server_execute_query

Execute a Cypher query on Neo4j database

MCP Neo4j Server_create_node

Create a new node in Neo4j

MCP Neo4j Server_create_relationship

Create a relationship between two nodes

Babashka MCP Server_execute

Execute Babashka (bb) code

Obsidian MCP Server_get_vault_contents

Obsidian Vault

Gemini Search MCP Server_search

Gemini 2.0Google

Gemini Search MCP Server_analyze_file

Gemini 2.0PDF

Gemini Search MCP Server_analyze_files-
Playwright Server MCP_playwright_navigate

Navigate to a URL,thip op will auto create a session

Playwright Server MCP_playwright_screenshot

Take a screenshot of the current page or a specific element

Playwright Server MCP_playwright_click

Click an element on the page using CSS selector

Playwright Server MCP_playwright_fill

Fill out an input field

Playwright Server MCP_playwright_evaluate

Execute JavaScript in the browser console

Playwright Server MCP_playwright_click_text

Click an element on the page by its text content

Playwright Server MCP_playwright_get_text_content

Get the text content of all elements

Playwright Server MCP_playwright_get_html_content

Get the HTML content of the page

Metaplex MCP Server_search_docs

Search Metaplex documentation

Metaplex MCP Server_get_repo

Get Metaplaex repository details

Metaplex MCP Server_search_code

Search code in Metaplaex repositories

Say MCP Server_speak

Use macOS text-to-speech to speak text aloud

Say MCP Server_list_voices

List available text-to-speech voices

npm-search-mcp-server_search_npm_packages

Search for npm packages

MCP Server Trello_get_cards_by_list_id

Fetch cards from a specific Trello list

MCP Server Trello_get_lists

Retrieve all lists from the specified board

MCP Server Trello_update_card_details

Update an existing card's details

MCP Server Trello_archive_card

Send a card to the archive

MCP Server Trello_add_list_to_board

Add a new list to the board

MCP Server Trello_archive_list

Send a list to the archive

MCP Server Trello_get_recent_activity

Fetch recent activity on the Trello board

MCP Server Trello_add_card_to_list

Add a new card to a specified list

MCP Server Trello_get_my_cards

Fetch all cards assigned to the current user

solana-docs-mcp-server_get_latest_docs

Get latest Solana documentation sections

solana-docs-mcp-server_search_docs

Search through Solana documentation

solana-docs-mcp-server_get_api_reference

Get Solana SDK API reference details

mcp-server-firecrawl_firecrawl_scrape

Scrape a single webpage with advanced options for content extraction. Supports various formats including markdown, HTML, and screenshots. Can execute custom actions like clicking or scrolling before scraping.

mcp-server-firecrawl_firecrawl_map

Discover URLs from a starting point. Can use both sitemap.xml and HTML link discovery.

mcp-server-firecrawl_firecrawl_crawl

Start an asynchronous crawl of multiple pages from a starting URL. Supports depth control, path filtering, and webhook notifications.

mcp-server-firecrawl_firecrawl_batch_scrape

Scrape multiple URLs in batch mode. Returns a job ID that can be used to check status.

mcp-server-firecrawl_firecrawl_check_batch_status

Check the status of a batch scraping job.

mcp-server-firecrawl_firecrawl_check_crawl_status

Check the status of a crawl job.

mcp-server-firecrawl_firecrawl_search

Search and retrieve content from web pages with optional scraping. Returns SERP results by default (url, title, description) or full page content when scrapeOptions are provided.

mcp-server-firecrawl_firecrawl_extract

Extract structured information from web pages using LLM. Supports both cloud AI and self-hosted LLM extraction.

mcp-server-firecrawl_firecrawl_deep_research

Conduct deep research on a query using web crawling, search, and AI analysis.

Playwright MCP Server_playwright_navigate

Navigate to a URL

Playwright MCP Server_playwright_screenshot

Take a screenshot of the current page or a specific element

Playwright MCP Server_playwright_click

Click an element on the page

Playwright MCP Server_playwright_fill

fill out an input field

Playwright MCP Server_playwright_select

Select an element on the page with Select tag

Playwright MCP Server_playwright_hover

Hover an element on the page

Playwright MCP Server_playwright_evaluate

Execute JavaScript in the browser console

Playwright MCP Server_playwright_get

Perform an HTTP GET request

Playwright MCP Server_playwright_post

Perform an HTTP POST request

Playwright MCP Server_playwright_put

Perform an HTTP PUT request

Playwright MCP Server_playwright_patch

Perform an HTTP PATCH request

Playwright MCP Server_playwright_delete

Perform an HTTP DELETE request

WeCom Bot MCP Server_send_wecom_file

Send file to WeCom.

Args: file_path: Path to file ctx: FastMCP context Returns: dict: Response containing status and message Raises: WeComError: If file is not found or API call fails
WeCom Bot MCP Server_send_wecom_image

Send image to WeCom.

Args: image_path: Path to image file or URL ctx: FastMCP context Returns: dict: Response containing status and message Raises: WeComError: If image is not found or API call fails.
WeCom Bot MCP Server_send_message

Send message to WeCom.

Args: content: Message content msg_type: Message type (text, markdown) mentioned_list: List of mentioned users mentioned_mobile_list: List of mentioned mobile numbers ctx: FastMCP context Returns: dict: Response containing status and message Raises: WeComError: If message sending fails
Marginalia MCP Server_search-marginalia

Search the web using Marginalia Search

Wikimedia MCP Server_search_content

Full-text search across Wikimedia page content. Returns snippets matching the query. Parameters: query (required), limit (1-50), project (e.g., 'wikipedia'), language (e.g., 'en')

Wikimedia MCP Server_get_page

Get Wikimedia page content, title, URL and last modified date. Parameters: title (required), project (e.g., 'wikipedia'), language (e.g., 'en')

Wikimedia MCP Server_search_titles

Search Wikimedia page titles starting with the query. Returns suggestions with descriptions. Parameters: query (required), limit (1-100), project (e.g., 'wikipedia'), language (e.g., 'en')

Wikimedia MCP Server_get_languages

Get versions of a Wikimedia page in other languages. Parameters: title (required), project (e.g., 'wikipedia'), language (e.g., 'en')

Wikimedia MCP Server_get_featured

Get featured Wikimedia content for a date. Returns featured article, most read pages, and picture of the day. Parameters: date (YYYY/MM/DD, default today), project ('wikipedia' only), language (en/de/fr/es/ru/ja/zh)

Wikimedia MCP Server_get_on_this_day

Get historical events from Wikimedia for a date. Parameters: date (MM/DD, default today), type (all/selected/births/deaths/holidays/events), project ('wikipedia' only), language (en/de/fr/es/ru/ja/zh)

MPC Tally API Server_list-daos

List DAOs on Tally sorted by specified criteria

MPC Tally API Server_get-dao

Get detailed information about a specific DAO

MPC Tally API Server_list-delegates

List delegates for a specific organization with their metadata

MPC Tally API Server_get-delegators

Get list of delegators for a specific address

MPC Tally API Server_list-proposals

List proposals for a specific DAO or organization using its slug

MPC Tally API Server_get-proposal

Get detailed information about a specific proposal. You must provide either the Tally ID (globally unique) or both onchainId and governorId (unique within a governor).

MPC Tally API Server_get-address-votes

Get votes cast by an address for a specific organization

MPC Tally API Server_get-address-created-proposals

Get proposals created by an address for a specific organization

MPC Tally API Server_get-address-daos-proposals

Returns proposals from DAOs where a given address has participated (voted, proposed, etc.)

MPC Tally API Server_get-address-received-delegations

Returns delegations received by an address

MPC Tally API Server_get-delegate-statement

Get a delegate's statement for a specific governor or organization

MPC Tally API Server_get-address-governances

Returns the list of governances (DAOs) an address has delegated to

MPC Tally API Server_get-proposal-timeline

Get the timeline of events for a specific proposal

MPC Tally API Server_get-proposal-voters

Get a list of all voters who have voted on a specific proposal

MPC Tally API Server_get-address-metadata

Get metadata information about a specific Ethereum address

MPC Tally API Server_get-proposal-security-analysis

Get security analysis for a specific proposal, including threat analysis and simulations

MPC Tally API Server_get-proposal-votes-cast

Get vote statistics and formatted vote counts for a specific proposal

MPC Tally API Server_get-proposal-votes-cast-list

Get a list of votes cast for a specific proposal, including formatted vote amounts

MPC Tally API Server_get-governance-proposals-stats

Get statistics about passed and failed proposals for a specific DAO

MCP Weather Server_get_hourly_weather

Get hourly weather forecast for a location.

MCP Scholarly Server_search-arxiv

Search arxiv for articles related to the given keyword.

MCP Scholarly Server_search-google-scholar

Search google scholar for articles related to the given keyword.

MCP Etherscan Server_check-balance

Check the ETH balance of an Ethereum address

MCP Etherscan Server_get-transactions

Get recent transactions for an Ethereum address

MCP Etherscan Server_get-token-transfers

Get ERC20 token transfers for an Ethereum address

MCP Etherscan Server_get-contract-abi

Get the ABI for a smart contract

MCP Etherscan Server_get-gas-prices

Get current gas prices in Gwei

MCP Etherscan Server_get-ens-name

Get the ENS name for an Ethereum address

Cursor MCP Server_get-alerts

Get weather alerts for a state

Cursor MCP Server_get-forecast

Get weather forecast for a location

Postman MCP Server_run-collection

Run a Postman Collection using Newman

MCP Screenshot Server_take_screenshot

Capture a screenshot of any web page or local GUI

UIFlowchartCreator_generate_ui_flow

Generate a UI flow diagram by analyzing React/Angular repositories. This tool scans the codebase to identify components, their relationships, and the overall UI structure.

CoinGecko MCP Server_get-coins

Get a paginated list of all supported coins on CoinGecko. Data up to March 9, 2025

CoinGecko MCP Server_find-coin-ids

Find CoinGecko IDs for a list of coin names or symbols (case-insensitive). Data up to March 9, 2025

CoinGecko MCP Server_get-historical-data

Get historical price, market cap, and volume data for a specific coin. Data up to March 9, 2025

CoinGecko MCP Server_refresh-cache

Manually update the local cache of CoinGecko coin data (automatically refreshed periodically, only needed if seeing stale data)

CoinGecko MCP Server_get-ohlc-data

Get OHLC (Open, High, Low, Close) data for a specific coin within a time range. Data up to March 9, 2025

Supabase NextJS MCP Server_query_data

Query data from Supabase

Supabase NextJS MCP Server_insert_record

Insert a record into Supabase

Supabase NextJS MCP Server_update_record

Update a record in Supabase

Supabase NextJS MCP Server_delete_record

Delete a record from Supabase

MCP GitHub Issue Server_get_issue_task

Fetch GitHub issue details to use as a task

mcp2mqtt_set_pwm

PWM0-100

mcp2mqtt_get_pico_info

Pico

mcp2mqtt_led_control

LED

OpenCTI MCP Server_get_latest_reports

OpenCTI

OpenCTI MCP Server_get_report_by_id

IDOpenCTI

OpenCTI MCP Server_search_indicators

OpenCTI

OpenCTI MCP Server_search_malware

OpenCTI

OpenCTI MCP Server_search_threat_actors

OpenCTI

OpenCTI MCP Server_get_user_by_id

ID

OpenCTI MCP Server_list_users-
OpenCTI MCP Server_list_groups-
OpenCTI MCP Server_list_attack_patterns-
OpenCTI MCP Server_get_campaign_by_name-
OpenCTI MCP Server_list_connectors-
OpenCTI MCP Server_list_status_templates-
OpenCTI MCP Server_get_file_by_id

ID

OpenCTI MCP Server_list_files-
OpenCTI MCP Server_list_marking_definitions-
OpenCTI MCP Server_list_labels-
MCP Package Docs Server_search_package_docs

Search for symbols or content within package documentation

MCP Package Docs Server_describe_go_package

Get a brief description of a Go package

MCP Package Docs Server_describe_python_package

Get a brief description of a Python package

MCP Package Docs Server_describe_npm_package

Get a brief description of an NPM package

MCP Package Docs Server_get_npm_package_doc

Get full documentation for an NPM package

MCP Package Docs Server_lookup_go_doc

[DEPRECATED] Use describe_go_package instead. Get a brief description of a Go package

MCP Package Docs Server_lookup_python_doc

[DEPRECATED] Use describe_python_package instead. Get a brief description of a Python package

MCP Package Docs Server_lookup_npm_doc

[DEPRECATED] Use describe_npm_package instead. Get a brief description of an NPM package

MCP Package Docs Server_get_hover

Get hover information for a position in a document using Language Server Protocol

MCP Package Docs Server_get_completions

Get completion suggestions for a position in a document using Language Server Protocol

MCP Package Docs Server_get_diagnostics

Get diagnostic information for a document using Language Server Protocol

MCP Orchestrator Server_delete_task

Delete a task if it has no dependents

MCP Orchestrator Server_get_next_task

Get the next available task

MCP Orchestrator Server_create_task

Create a new task

MCP Orchestrator Server_update_task

Update an existing pending task

MCP Orchestrator Server_complete_task

Mark a task as completed

MCP Orchestrator Server_get_task_status

Get status of all tasks

MCP Orchestrator Server_get_task_details

Get details of a specific task

Google News MCP Server_google_news_search

Search Google News for articles and news content. Results will be automatically categorized by topic.

mcp-hn_get_stories

Get stories from Hacker News. The options are top, new, ask_hn, show_hn for types of stories. This doesn't include the comments. Use get_story_info to get the comments.

mcp-hn_get_user_info

Get user info from Hacker News, including the stories they've submitted

mcp-hn_search_stories

Search stories from Hacker News. It is generally recommended to use simpler queries to get a broader set of results (less than 5 words). Very targetted queries may not return any results.

mcp-hn_get_story_info

Get detailed story info from Hacker News, including the comments

Figma MCP Server_get-file

Get details of a Figma file

Figma MCP Server_list-files

List files in a Figma project

MCP Server for ArangoDB_arango_query

Execute an AQL query

MCP Server for ArangoDB_arango_insert

Insert a document into a collection

MCP Server for ArangoDB_arango_update

Update a document in a collection

MCP Server for ArangoDB_arango_remove

Remove a document from a collection

MCP Server for ArangoDB_arango_backup

Backup collections to JSON files.

MCP Server for ArangoDB_arango_list_collections

List all collections in the database

MCP Server for ArangoDB_arango_create_collection

Create a new collection in the database

mcp-discord_remove_role

Remove a role from a user

mcp-discord_get_server_info

Get information about a Discord server

mcp-discord_list_members

Get a list of members in a server

mcp-discord_add_role

Add a role to a user

mcp-discord_create_text_channel

Create a new text channel

mcp-discord_delete_channel

Delete a channel

mcp-discord_add_reaction

Add a reaction to a message

mcp-discord_remove_reaction

Remove a reaction from a message

mcp-discord_send_message

Send a message to a specific channel

mcp-discord_read_messages

Read recent messages from a channel

mcp-discord_get_user_info

Get information about a Discord user

mcp-discord_moderate_message

Delete a message and optionally timeout the user

Hacker News MCP_get_stories

Get stories from Hacker News

Paperless-NGX MCP Server_bulk_edit_documents

Perform bulk operations on documents

Paperless-NGX MCP Server_post_document

Upload a new document to Paperless-NGX

Paperless-NGX MCP Server_list_documents

List all documents

Paperless-NGX MCP Server_get_document

Get a specific document by ID

Paperless-NGX MCP Server_search_documents

Search documents using full-text query

Paperless-NGX MCP Server_download_document

Download a document by ID

Paperless-NGX MCP Server_list_tags

List all tags

Paperless-NGX MCP Server_create_tag

Create a new tag

Paperless-NGX MCP Server_update_tag

Update an existing tag

Paperless-NGX MCP Server_delete_tag

Delete a tag

Paperless-NGX MCP Server_bulk_edit_tags

Bulk edit tags (set permissions or delete)

Paperless-NGX MCP Server_list_correspondents

List all correspondents

Paperless-NGX MCP Server_create_correspondent

Create a new correspondent

Paperless-NGX MCP Server_bulk_edit_correspondents

Bulk edit correspondents (set permissions or delete)

Paperless-NGX MCP Server_list_document_types

List all document types

Paperless-NGX MCP Server_create_document_type

Create a new document type

Paperless-NGX MCP Server_bulk_edit_document_types

Bulk edit document types (set permissions or delete)

MCP Browser Automation Server_playwright_navigate

Navigate to a URL

MCP Browser Automation Server_playwright_screenshot

Take a screenshot of the current page or a specific element

MCP Browser Automation Server_playwright_click

Click an element on the page

MCP Browser Automation Server_playwright_fill

fill out an input field

MCP Browser Automation Server_playwright_select

Select an element on the page with Select tag

MCP Browser Automation Server_playwright_hover

Hover an element on the page

MCP Browser Automation Server_playwright_evaluate

Execute JavaScript in the browser console

MCP Browser Automation Server_playwright_get

Perform an HTTP GET request

MCP Browser Automation Server_playwright_post

Perform an HTTP POST request

MCP Browser Automation Server_playwright_put

Perform an HTTP PUT request

MCP Browser Automation Server_playwright_patch

Perform an HTTP PATCH request

MCP Browser Automation Server_playwright_delete

Perform an HTTP DELETE request

Perplexity MCP Server_search

Search Perplexity for coding help

Kagi MCP Server_ask_fastgpt

Ask fastgpt to search web and give an answer with references

Kagi MCP Server_enrich_web

Enrich context with web content focused on general, non-commercial web content.

Kagi MCP Server_enrich_news

Enrich context with web content focused on non-commercial news and discussions.

HubSpot MCP Server_hubspot_get_contacts

Get contacts from HubSpot

HubSpot MCP Server_hubspot_create_contact

Create a new contact in HubSpot

HubSpot MCP Server_hubspot_get_companies

Get companies from HubSpot

HubSpot MCP Server_hubspot_create_company

Create a new company in HubSpot

HubSpot MCP Server_hubspot_get_company_activity

Get activity history for a specific company

MCP Compass_recommend-mcp-servers
Use this tool when there is a need to findn external MCP tools. It explores and recommends existing MCP servers from the internet, based on the description of the MCP Server needed. It returns a list of MCP servers with their IDs, descriptions, GitHub URLs, and similarity scores.
@kazuph/mcp-obsidian_obsidian_read_notes

Read the contents of multiple notes. Each note's content is returned with its path as a reference. Failed reads for individual notes won't stop the entire operation. Reading too many at once may result in an error.

@kazuph/mcp-obsidian_obsidian_search_notes

Searches for a note by its name. The search is case-insensitive and matches partial names. Queries can also be a valid regex. Returns paths of the notes that match the query.

@kazuph/mcp-obsidian_obsidian_read_notes_dir

Lists only the directory structure under the specified path. Returns the relative paths of all directories without file contents.

@kazuph/mcp-obsidian_obsidian_write_note

Creates a new note at the specified path. Before writing, check the directory structure using obsidian_read_notes_dir. If the target directory is unclear, the operation will be paused and you will be prompted to specify the correct directory.

@kazuph/mcp-youtube_get_youtube_transcript

Download YouTube video transcript and metadata

@kazuph/mcp-taskmanager_request_planning

Register a new user request and plan its associated tasks. You must provide 'originalRequest' and 'tasks', and optionally 'splitDetails'.

This tool initiates a new workflow for handling a user's request. The workflow is as follows:

  1. Use 'request_planning' to register a request and its tasks.
  2. After adding tasks, you MUST use 'get_next_task' to retrieve the first task. A progress table will be displayed.
  3. Use 'get_next_task' to retrieve the next uncompleted task.
  4. IMPORTANT: After marking a task as done, the assistant MUST NOT proceed to another task without the user's approval. The user must explicitly approve the completed task using 'approve_task_completion'. A progress table will be displayed before each approval request.
  5. Once a task is approved, you can proceed to 'get_next_task' again to fetch the next pending task.
  6. Repeat this cycle until all tasks are done.
  7. After all tasks are completed (and approved), 'get_next_task' will indicate that all tasks are done and that the request awaits approval for full completion.
  8. The user must then approve the entire request's completion using 'approve_request_completion'. If the user does not approve and wants more tasks, you can again use 'request_planning' to add new tasks and continue the cycle.

The critical point is to always wait for user approval after completing each task and after all tasks are done, wait for request completion approval. Do not proceed automatically.

@kazuph/mcp-taskmanager_get_next_task

Given a 'requestId', return the next pending task (not done yet). If all tasks are completed, it will indicate that no more tasks are left and that you must wait for the request completion approval.

A progress table showing the current status of all tasks will be displayed with each response.

If the same task is returned again or if no new task is provided after a task was marked as done but not yet approved, you MUST NOT proceed. In such a scenario, you must prompt the user for approval via 'approve_task_completion' before calling 'get_next_task' again. Do not skip the user's approval step. In other words:

  • After calling 'mark_task_done', do not call 'get_next_task' again until 'approve_task_completion' is called by the user.
  • If 'get_next_task' returns 'all_tasks_done', it means all tasks have been completed. At this point, you must not start a new request or do anything else until the user decides to 'approve_request_completion' or possibly add more tasks via 'request_planning'.
@kazuph/mcp-taskmanager_mark_task_done

Mark a given task as done after you've completed it. Provide 'requestId' and 'taskId', and optionally 'completedDetails'.

After marking a task as done, a progress table will be displayed showing the updated status of all tasks.

After this, DO NOT proceed to 'get_next_task' again until the user has explicitly approved this completed task using 'approve_task_completion'.

@kazuph/mcp-taskmanager_approve_task_completion

Once the assistant has marked a task as done using 'mark_task_done', the user must call this tool to approve that the task is genuinely completed. Only after this approval can you proceed to 'get_next_task' to move on.

A progress table will be displayed before requesting approval, showing the current status of all tasks.

If the user does not approve, do not call 'get_next_task'. Instead, the user may request changes, or even re-plan tasks by using 'request_planning' again.

@kazuph/mcp-taskmanager_approve_request_completion

After all tasks are done and approved, this tool finalizes the entire request. The user must call this to confirm that the request is fully completed.

A progress table showing the final status of all tasks will be displayed before requesting final approval.

If not approved, the user can add new tasks using 'request_planning' and continue the process.

@kazuph/mcp-taskmanager_open_task_details

Get details of a specific task by 'taskId'. This is for inspecting task information at any point.

@kazuph/mcp-taskmanager_list_requests

List all requests with their basic information and summary of tasks. This provides a quick overview of all requests in the system.

@kazuph/mcp-taskmanager_add_tasks_to_request

Add new tasks to an existing request. This allows extending a request with additional tasks.

A progress table will be displayed showing all tasks including the newly added ones.

@kazuph/mcp-taskmanager_update_task

Update an existing task's title and/or description. Only uncompleted tasks can be updated.

A progress table will be displayed showing the updated task information.

@kazuph/mcp-taskmanager_delete_task

Delete a specific task from a request. Only uncompleted tasks can be deleted.

A progress table will be displayed showing the remaining tasks after deletion.

@kazuph/mcp-pocket_pocket_get_articles

Fetches the latest unread articles from Pocket API. Returns up to 20 articles by default. You can specify the number of articles to fetch (1-20) using the count parameter. Returns the article ID, title, URL, and excerpt for each article.

@kazuph/mcp-pocket_pocket_mark_as_read

Marks a specific Pocket article as read (archived) using its item ID.

Perplexity MCP Server_perplexity_search_web

Search the web using Perplexity AI with recency filtering

MCP Tool Server_fetch

Fetches a website and returns its content

MCP Memory Service_store_memory

Store new information with optional tags

MCP Memory Service_retrieve_memory

Find relevant memories based on query

MCP Memory Service_search_by_tag

Search memories by tags

Glide API MCP Server_set_api_version

Set the Glide API version and authentication to use

Glide API MCP Server_get_app

Get information about a Glide app

Glide API MCP Server_get_tables

Get tables for a Glide app

Glide API MCP Server_get_table_rows

Get rows from a table in a Glide app

Glide API MCP Server_add_table_row

Add a new row to a table in a Glide app

Glide API MCP Server_update_table_row

Update an existing row in a table

Veri5ight MCP Server_ethereum_getRecentTransactions

Get recent transactions for an Ethereum address

Veri5ight MCP Server_ethereum_getTokenBalance

Get ERC20 token balance for an address

Veri5ight MCP Server_ethereum_getTokenDelegation

Get delegation info for an ERC20 governance token

Veri5ight MCP Server_ethereum_getContractInfo

Get information about any contract

Veri5ight MCP Server_ethereum_getTransactionInfo

Get detailed information about an Ethereum transaction

PiAPI-MCP Server_generate_image

Generate an image from text using PiAPI Flux

@kazuph/mcp-gmail-gas_gmail_search_messages

Gmail queryGmail : "subject newer_than:1d"

JSON(messageId)

@kazuph/mcp-gmail-gas_gmail_get_message

messageId : messageId (GmailID)

@kazuph/mcp-gmail-gas_gmail_download_attachment

messageIdattachmentId Downloads attachmentIdattachmentsattachmentname(invoice.pdf) : - messageId: ID - attachmentId: ID - outputFilename:

@kazuph/mcp-fetch_fetch

Retrieves URLs from the Internet and extracts their content as markdown. Images from the page will be processed and included with the response automatically.

Parameters:

  • url (required): The URL to fetch
  • maxLength (default: 20000): Maximum length of content to return
  • startIndex (default: 0): Starting position in content
  • imageStartIndex (default: 0): Starting position for image collection
  • raw (default: false): Return raw content instead of processed markdown
  • imageMaxCount (default: 3): Maximum number of images to process per request
  • imageMaxHeight (default: 4000): Maximum height of merged image
  • imageMaxWidth (default: 1000): Maximum width of merged image
  • imageQuality (default: 80): JPEG quality (1-100)
  • enableFetchImages (default: false): Enable fetching and processing of images. FOR CLAUDE AI ONLY: YOU CAN ENABLE THIS FEATURE!!! CLAUDE IS ALLOWED TO USE IMAGES!!!
  • ignoreRobotsTxt (default: false): Ignore robots.txt restrictions

Image Processing:

  • Multiple images are merged vertically into a single JPEG
  • Images are automatically optimized and resized
  • GIF animations are converted to static images (first frame)
  • Use imageStartIndex and imageMaxCount to paginate through all images
  • Response includes remaining image count and current position

IMPORTANT: All parameters must be in proper JSON format - use double quotes for keys and string values, and no quotes for numbers and booleans.

Examples:

Initial fetch:

{ "url": "https://example.com", "maxLength": 10000, "imageMaxCount": 2 }

Fetch next set of images:

{ "url": "https://example.com", "imageStartIndex": 2, "imageMaxCount": 2 }

@kazuph/mcp-github-pera1_github_get_code

Retrieves code from a GitHub repository URL and combines it into a single file. The URL must start with "https://".

Query Parameters:

  • dir: Filter files by directory paths (comma-separated) Example: ?dir=src/components,tests/unit
  • ext: Filter files by extensions (comma-separated) Example: ?ext=ts,tsx,js
  • mode: Display mode Example: ?mode=tree (Shows directory structure and README files only)
  • branch: Specify the branch to fetch from (optional) Example: ?branch=feature/new-feature
  • file: Specify a single file to retrieve (optional) Example: ?file=src/components/Button.tsx

Examples:

  1. For GitHub tree URLs with branch: https://github.com/kazuph/pera1/tree/feature/great-branch This URL will be automatically parsed to extract the branch information.
  2. For specific directory in a branch: url: https://github.com/modelcontextprotocol/servers dir: src/fetch branch: develop
  3. For a single file: url: https://github.com/username/repository file: src/components/Button.tsx
  4. For directory structure with README files only: url: https://github.com/username/repository mode: tree

The tool will correctly parse the repository structure and fetch the files from the specified branch.

ClickHouse MCP Server_list_databases-
ClickHouse MCP Server_list_tables-
ClickHouse MCP Server_run_select_query-
Amazon Bedrock MCP Server_generate_image

Generate image(s) using Amazon Nova Canvas model. The returned data is Base64-encoded string that represent each image that was generated.

Google Calendar_delete_event

Deletes an event from the calendar

Google Calendar_create_event

Creates a new event in Google Calendar

Google Calendar_get_event

Retrieves details of a specific event

Google Calendar_update_event

Updates an existing event

Google Calendar_list_events

Lists events within a specified time range

MCP NPX Fetch_fetch_html

Fetch a website and return the content as HTML

MCP NPX Fetch_fetch_markdown

Fetch a website and return the content as Markdown

MCP NPX Fetch_fetch_txt

Fetch a website, return the content as plain text (no HTML)

MCP NPX Fetch_fetch_json

Fetch a JSON file from a URL

Australian Bureau of Statistics (ABS)_query_dataset

Query a specific ABS dataset with optional filters

MCP Server Neurolorap_code_collector

Collect code from files into a markdown document

MCP Server Neurolorap_project_structure_reporter

Generate a report of project structure metrics

Cryptocurrency Market Data MCP Server_get-price

Get current price of a cryptocurrency pair from a specific exchange

Cryptocurrency Market Data MCP Server_get-market-summary

Get detailed market summary for a cryptocurrency pair from a specific exchange

Cryptocurrency Market Data MCP Server_get-top-volumes

Get top cryptocurrencies by trading volume from a specific exchange

Cryptocurrency Market Data MCP Server_list-exchanges

List all supported cryptocurrency exchanges

Cryptocurrency Market Data MCP Server_get-historical-ohlcv

Get historical OHLCV (candlestick) data for a trading pair

Cryptocurrency Market Data MCP Server_get-price-change

Get price change statistics over different time periods

Cryptocurrency Market Data MCP Server_get-volume-history

Get trading volume history over time

mcp-tool-builder_create_tool

Create a new Python tool with specified functionality

mcp-tool-builder_list_available_tools

List all currently available tools

mcp-tool-builder_get_bitcoin_price

Gets current Bitcoin price in USD from CoinGecko API

mcp-tool-builder_get_weather_forecast

Retrieves weather forecast for a given ZIP code using NWS API

Website Downloader_download_website

Download an entire website using wget

Google Workspace MCP Server_list_emails

List recent emails from Gmail inbox

Google Workspace MCP Server_search_emails

Search emails with advanced query

Google Workspace MCP Server_send_email

Send a new email

Google Workspace MCP Server_modify_email

Modify email labels (archive, trash, mark read/unread)

Google Workspace MCP Server_list_events

List upcoming calendar events

Google Workspace MCP Server_create_event

Create a new calendar event

Google Workspace MCP Server_update_event

Update an existing calendar event

Google Workspace MCP Server_delete_event

Delete a calendar event

Mozilla Readability Parser MCP Server_parse

Extracts and transforms webpage content into clean, LLM-optimized Markdown. Returns article title, main content, excerpt, byline and site name. Uses Mozilla's Readability algorithm to remove ads, navigation, footers and non-essential elements while preserving the core content structure.

Meilisearch MCP Server_health-check

Check Meilisearch server health

Meilisearch MCP Server_get-version

Get Meilisearch version information

Meilisearch MCP Server_get-stats

Get database statistics

Meilisearch MCP Server_get-settings

Get current settings for an index

Meilisearch MCP Server_create-index

Create a new Meilisearch index

Meilisearch MCP Server_list-indexes

List all Meilisearch indexes

Meilisearch MCP Server_update-settings

Update settings for an index

Meilisearch MCP Server_get-documents

Get documents from an index

Meilisearch MCP Server_add-documents

Add documents to an index

Meilisearch MCP Server_search

Search through Meilisearch indices. If indexUid is not provided, it will search across all indices.

Meilisearch MCP Server_get-task

Get information about a specific task

Meilisearch MCP Server_get-connection-settings

Get current Meilisearch connection settings

Meilisearch MCP Server_update-connection-settings

Update Meilisearch connection settings

Meilisearch MCP Server_get-tasks

Get list of tasks with optional filters

Meilisearch MCP Server_cancel-tasks

Cancel tasks based on filters

Meilisearch MCP Server_get-keys

Get list of API keys

Meilisearch MCP Server_create-key

Create a new API key

Meilisearch MCP Server_delete-key

Delete an API key

Meilisearch MCP Server_get-health-status

Get comprehensive health status of Meilisearch

Meilisearch MCP Server_get-index-metrics

Get detailed metrics for an index

Meilisearch MCP Server_get-system-info

Get system-level information

Rijksmuseum MCP Server_get_artwork_image

Retrieve detailed image tile information for high-resolution viewing of an artwork. This tool provides data for implementing deep zoom functionality, allowing detailed examination of the artwork at various zoom levels.

The response includes multiple zoom levels (z0 to z6):

  • z0: Highest resolution (largest image)
  • z6: Lowest resolution (smallest image)

Each zoom level contains:

  • Total width and height of the image at that level
  • A set of image tiles that make up the complete image
  • Position information (x,y) for each tile

This is particularly useful for:

  • Implementing deep zoom viewers
  • Studying fine artwork details
  • Analyzing brushwork or conservation details
  • Creating interactive viewing experiences
Rijksmuseum MCP Server_get_user_sets

Retrieve collections created by Rijksstudio users. These are curated sets of artworks that users have grouped together based on themes, artists, periods, or personal interests.

Each set includes:

  • Basic information (name, description, creation date)
  • Creator details (username, language preference)
  • Collection statistics (number of items)
  • Navigation links (API and web URLs)

This tool is useful for:

  • Discovering user-curated exhibitions
  • Finding thematically related artworks
  • Exploring popular artwork groupings
  • Studying collection patterns
Rijksmuseum MCP Server_get_user_set_details

Retrieve detailed information about a specific user-created collection in Rijksstudio. Returns comprehensive information about the set and its contents, including:

  • Set metadata (name, description, creation date)
  • Creator information
  • List of artworks in the set
  • Image data for each artwork
  • Navigation links

This tool is particularly useful for:

  • Analyzing thematic groupings of artworks
  • Studying curatorial choices
  • Understanding collection patterns
  • Exploring relationships between artworks
Rijksmuseum MCP Server_open_image_in_browser

Open a high-resolution image of an artwork in the default web browser for viewing. This tool is useful when you want to examine an artwork visually or show it to the user. Works with any valid Rijksmuseum image URL.

Rijksmuseum MCP Server_get_artist_timeline

Generate a chronological timeline of an artist's works in the Rijksmuseum collection. This tool is perfect for studying an artist's development, analyzing their artistic periods, or understanding their contribution to art history over time.

Rijksmuseum MCP Server_search_artwork

Search and filter artworks in the Rijksmuseum collection. This tool provides extensive filtering options including artist name, type of artwork, materials, techniques, time periods, colors, and more. Results can be sorted in various ways and are paginated.

Rijksmuseum MCP Server_get_artwork_details

Retrieve comprehensive details about a specific artwork from the Rijksmuseum collection. Returns extensive information including:

  • Basic details (title, artist, dates)
  • Physical properties (dimensions, materials, techniques)
  • Historical context (dating, historical persons, documentation)
  • Visual information (colors, image data)
  • Curatorial information (descriptions, labels, location)
  • Acquisition details
  • Exhibition history

This is the primary tool for in-depth research on a specific artwork, providing all available museum documentation and metadata.

markdown2pdf-mcp_create_pdf_from_markdown

Convert markdown content to PDF. Note: Cannot handle LaTeX math equations. Supports basic markdown elements like headers, lists, tables, code blocks, blockquotes, and images (both local and external URLs).

Cedardiff MCP Server_edit_file

Edit a file using CEDARScript syntax

OpenHue MCP Server_get-lights

List all Hue lights or get details for a specific light

OpenHue MCP Server_control-light

Control a specific Hue light

OpenHue MCP Server_get-rooms

List all rooms or get details for a specific room

OpenHue MCP Server_control-room

Control all lights in a room

OpenHue MCP Server_get-scenes

List all scenes or get details for specific scenes

OpenHue MCP Server_activate-scene

Activate a specific scene

MCP File Preview Server_preview_file

Preview local HTML file and capture screenshot

MCP File Preview Server_analyze_content

Analyze HTML content structure

SearXNG Server_searxng_web_search

Performs a web search using the SearxNG API, ideal for general queries, news, articles, and online content. Use this for broad information gathering, recent events, or when you need diverse web sources.

SearXNG Server_web_url_read

Read the content from an URL. Use this for further information retrieving to understand the content of each URL.

social-media-mcp_post_to_x

Post a message to X (formerly Twitter)

social-media-mcp_list_x_posts

List X (formerly Twitter) posts

social-media-mcp_create_x_thread

Create a thread on X (formerly Twitter)

mcp-neovim-server_vim_buffer

Current VIM text editor buffer with line numbers shown

mcp-neovim-server_vim_command

Send a command to VIM for navigation, spot editing, and line deletion. For shell commands like ls, use without the leading colon (e.g. '!ls' not ':!ls').

mcp-neovim-server_vim_status

Get the status of the VIM editor

mcp-neovim-server_vim_edit

Edit lines using insert or replace in the VIM editor.

mcp-neovim-server_vim_window

Manipulate Neovim windows (split, close, navigate)

mcp-neovim-server_vim_mark

Set a mark at a specific position

mcp-neovim-server_vim_register

Set content of a register

mcp-neovim-server_vim_visual

Make a visual selection

Sefaria Jewish Library MCP Server_get_text

get a jewish text from the jewish library

Sefaria Jewish Library MCP Server_get_commentaries

get a list of references of commentaries for a jewish text

Sefaria Jewish Library MCP Server_search_texts

search for jewish texts in the Sefaria library

MCPMC (Minecraft MCP)_find_blocks

Find nearby blocks of specific types. Use this to locate building materials or identify terrain.

MCPMC (Minecraft MCP)_craft_item

Craft items using materials in inventory. Can use a crafting table if specified.

MCPMC (Minecraft MCP)_chat

Send a chat message to the server

MCPMC (Minecraft MCP)_navigate_relative

Make the bot walk relative to its current position. dx moves right(+)/left(-), dy moves up(+)/down(-), dz moves forward(+)/back(-) relative to bot's current position and orientation

MCPMC (Minecraft MCP)_dig_block_relative

Dig a single block relative to the bot's current position. dx moves right(+)/left(-), dy moves up(+)/down(-), dz moves forward(+)/back(-) relative to bot's current position and orientation

MCPMC (Minecraft MCP)_dig_area_relative

Dig multiple blocks in an area relative to the bot's current position. Coordinates use the same relative system as dig_block_relative. Use this for clearing spaces.

MCPMC (Minecraft MCP)_place_block

Place a block from the bot's inventory at the specified position. Use this for building structures.

MCPMC (Minecraft MCP)_inspect_inventory

Check the contents of the bot's inventory to see available materials.

MCPMC (Minecraft MCP)_follow_player

Make the bot follow a specific player

MCPMC (Minecraft MCP)_attack_entity

Attack a specific entity near the bot

mcp-vcd_get-signal

Get all instances of a specified signal in a VCD file

OpenRouter MCP Server_chat_completion

Send a message to OpenRouter.ai and get a response

OpenRouter MCP Server_search_models

Search and filter OpenRouter.ai models based on various criteria

OpenRouter MCP Server_get_model_info

Get detailed information about a specific model

OpenRouter MCP Server_validate_model

Check if a model ID is valid

@wopal/mcp-server-hotnews_get_hot_news

Get hot trending lists from various platforms

hny-mcp_list_datasets

Lists available datasets for the active environment with pagination, sorting, and search support. Returns dataset names, slugs, descriptions, and timestamps.

hny-mcp_list_columns

Lists all columns available in the specified dataset, including their names, types, descriptions, and hidden status. Supports pagination, sorting by type/name/created_at, and searching by name/description. Note: all is NOT supported as a dataset name.

hny-mcp_run_query

Executes a Honeycomb query, returning results with statistical summaries.

CRITICAL RULE: For COUNT operations, NEVER include a "column" field in your calculation, even as null or undefined. Example: Use {"op": "COUNT"} NOT {"op": "COUNT", "column": "anything"}.

Additional Rules:

  1. All parameters must be at the TOP LEVEL (not nested inside a 'query' property)
  2. Field names must be exact - use 'op' (not 'operation'), 'breakdowns' (not 'group_by')
  3. Only use the exact operation names listed in the schema (e.g., use "P95" for 95th percentile, not "PERCENTILE")
  4. For all operations EXCEPT COUNT and CONCURRENCY, you must specify a "column" field
hny-mcp_analyze_columns

Analyzes specific columns in a dataset by running statistical queries and returning computed metrics. This tool allows users to get statistical information about a specific column, including value distribution, top values, and numeric statistics (for numeric columns). Supports analyzing up to 10 columns at once by specifying an array of column names in the 'columns' parameter. When multiple columns are specified, they will be analyzed together as a group, showing the distribution of their combined values. Use this tool before running queries to get a better understanding of the data in your dataset.

hny-mcp_list_boards

Lists available boards (dashboards) for a specific environment with pagination, sorting, and search support. Returns board IDs, names, descriptions, creation times, and last update times.

hny-mcp_get_board

Retrieves a specific board (dashboard) from a Honeycomb environment. This tool returns a detailed object containing the board's ID, name, description, creation time, and last update time.

hny-mcp_list_markers

Lists available markers (deployment events) for a specific dataset or environment with pagination, sorting, and search support. Returns IDs, messages, types, URLs, creation times, start times, and end times.

hny-mcp_list_recipients

Lists available recipients for notifications in a specific environment. This tool returns a list of all recipients available in the specified environment, including their names, types, targets, and metadata.

hny-mcp_list_slos

Lists available SLOs (Service Level Objectives) for a specific dataset. This tool returns a list of all SLOs available in the specified environment, including their names, descriptions, time periods, and target per million events expected to succeed. NOTE: all is NOT supported as a dataset name -- it is not possible to list all SLOs in an environment.

hny-mcp_get_slo

Retrieves a specific SLO (Service Level Objective) by ID with detailed information. This tool returns a detailed object containing the SLO's ID, name, description, time period, target per million, compliance, budget remaining, SLI alias, and timestamps.

hny-mcp_list_triggers

Lists available triggers (alerts) for a specific dataset. This tool returns a list of all triggers available in the specified dataset, including their names, descriptions, thresholds, and other metadata. NOTE: all is NOT supported as a dataset name -- it is not possible to list all triggers in an environment.

hny-mcp_get_trigger

Retrieves a specific trigger (alert) by ID with detailed information. This tool returns a detailed object containing the trigger's ID, name, description, threshold, frequency, alert type, triggered status, disabled status, recipients, evaluation schedule type, and timestamps.

hny-mcp_get_trace_link

Generates a direct deep link to a specific trace in the Honeycomb UI. This tool creates a URL that opens a specific distributed trace, optionally positioning to a particular span and time range. If no time range is specified, the trace must have been generated within two hours from the current time. If only the start time is provided, the end time is assumed to be 10 minutes from the start time.

hny-mcp_get_instrumentation_help

Provides important guidance for how to instrument code with OpenTelemetry traces and logs. It is intended to be used when someone wants to instrument their code, or improve instrumentation (such as getting advice on improving their logs or tracing, or creating new instrumentation). It is BEST used after inspecting existing code and telemetry data to understand some operational characteristics. However, if there is no telemetry data to read from Honeycomb, it can still provide guidance on how to instrument code.

mcp-pdf-tools_merge-pdfs

Merge multiple PDF files into a single PDF

mcp-pdf-tools_extract-pages

Extract specific pages from a PDF file

mcp-pdf-tools_search-pdfs

Search for PDF files in a directory with optional pattern matching

mcp-pdf-tools_merge-pdfs-ordered

Merge PDFs in a specific order based on patterns or exact names

mcp-pdf-tools_find-related-pdfs

Find a PDF and then search for related PDFs based on its content, including common substring patterns

mapbox-mcp-server_mapbox_directions

Get navigation route between two points

mapbox-mcp-server_mapbox_directions_by_places

Get navigation route between multiple places using their names

mapbox-mcp-server_mapbox_matrix

Calculate travel time and distance matrices between coordinates

mapbox-mcp-server_mapbox_matrix_by_places

Calculate travel time and distance matrices between places using their names

mapbox-mcp-server_mapbox_geocoding

Search for places and convert addresses into coordinates

mcp-graphql_introspect-schema

Introspect the GraphQL schema, use this tool before doing a query to get the schema information if you do not have it available as a resource already.

mcp-graphql_query-graphql

Query a GraphQL endpoint with the given query and variables

mcp-rest-api_test_request

Test a REST API endpoint and get detailed response information. Base URL: https://api.example.org/v2 | SSL Verification enabled (see config resource for SSL settings) | Authentication: No authentication configured | No custom headers defined (see config resource for headers) | The tool automatically: - Normalizes endpoints (adds leading slash, removes trailing slashes) - Handles authentication header injection - Applies custom headers from HEADER_* environment variables - Accepts any HTTP status code as valid - Limits response size to 10000 bytes (see config resource for size limit settings) - Returns detailed response information including: * Full URL called * Status code and text * Response headers * Response body * Request details (method, headers, body) * Response timing * Validation messages | Error Handling: - Network errors are caught and returned with descriptive messages - Invalid status codes are still returned with full response details - Authentication errors include the attempted auth method | See the config resource for all configuration options, including header configuration.

MCP server for LogSeq_create_page

Create a new page in LogSeq.

MCP server for LogSeq_list_pages

Lists all pages in a LogSeq graph.

ElevenLabs MCP Server_generate_audio_simple

Generate audio from plain text using default voice settings

ElevenLabs MCP Server_generate_audio_script

Generate audio from a structured script with multiple voices and actors. Accepts either: 1. Plain text string 2. JSON string with format: { "script": [ { "text": "Text to speak", "voice_id": "optional-voice-id", "actor": "optional-actor-name" }, ... ] }

ElevenLabs MCP Server_delete_job

Delete a voiceover job and its associated files

ElevenLabs MCP Server_get_audio_file

Get the audio file content for a specific job

ElevenLabs MCP Server_list_voices

Get a list of all available ElevenLabs voices with metadata

ElevenLabs MCP Server_get_voiceover_history

Get voiceover job history. Optionally specify a job ID for a specific job.

X MCP Server_get_home_timeline

Get the most recent tweets from your home timeline

X MCP Server_create_tweet

Create a new tweet

X MCP Server_reply_to_tweet

Reply to a tweet

cfbd-mcp-server_get-games

Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response.

Get college football game data. Required: year Optional: week, season_type, team, conference, category, game_id Example valid queries: - year=2023 - year=2023, team="Alabama" - year=2023, week=1, conference="SEC"
cfbd-mcp-server_get-records

Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response.

Get college football team record data. Optional: year, team, conference Example valid queries: - year=2023 - team="Alabama" - conference="SEC" - year=2023, team="Alabama"
cfbd-mcp-server_get-games-teams

Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response.

Get college football team game data. Required: year plus at least one of: week, team or conference. Example valid queries: - year=2023, team="Alabama" - year=2023, week=1 - year=2023, conference="SEC
cfbd-mcp-server_get-plays

Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response.

Get college football play-by-play data. Required: year AND week Optional: season_type, team, offense, defense, conference, offense_conference, defense_conference, play_type, classification Example valid queries: - year=2023, week=1 - year=2023, week=1, team="Alabama" - year=2023, week=1, offense="Alabama", defense="Auburn"
cfbd-mcp-server_get-drives

Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response.

Get college football drive data. Required: year Optional: season_type, week, team, offense, defense, conference, offense_conference, defense_conference, classification Example valid queries: - year=2023 - year=2023, team="Alabama" - year=2023, offense="Alabama", defense="Auburn"
cfbd-mcp-server_get-play-stats

Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response.

Get college football play statistic data. Optional: year, week, team, game_id, athlete_id, stat_type_id, season_type, conference At least one parameter is required Example valid queries: - year=2023 - game_id=401403910 - team="Alabama", year=2023
cfbd-mcp-server_get-rankings

Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response.

Get college football rankings data. Required: year Optional: week, season_type Example valid queries: - year=2023 - year=2023, week=1 - year=2023, season_type="regular"
cfbd-mcp-server_get-pregame-win-probability

Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response.

Get college football pregame win probability data. Optional: year, week, team, season_type At least one parameter is required Example valid queries: - year=2023 - team="Alabama" - year=2023, week=1
cfbd-mcp-server_get-advanced-box-score

Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response.

Get advanced box score data for college football games. Required: gameId Example valid queries: - gameId=401403910
MCP-wolfram-alpha_query-wolfram-alpha

Use Wolfram Alpha to answer a question. This tool should be used when you need complex math or symbolic intelligence.

mcp-jira-server_create_issue

Create a new Jira issue

mcp-jira-server_list_issues

List issues in the project

mcp-jira-server_update_issue

Update an existing issue

mcp-jira-server_get_issue

Get details of a specific issue

mcp-jira-server_delete_issue

Delete a Jira issue

mcp-jira-server_add_comment

Add a comment to an existing issue

Roam Research_roam_add_todo

Add a list of todo items as individual blocks to today's daily page in Roam. Each item becomes its own actionable block with todo status. NOTE on Roam-flavored markdown: For direct linking: use [[link]] syntax. For aliased linking, use alias syntax. Do not concatenate words in links/hashtags - correct: #[[multiple words]] #self-esteem (for typically hyphenated words).

Roam Research_roam_fetch_page_by_title

Retrieve complete page contents by exact title, including all nested blocks and resolved block references. Use for accessing daily pages, reading and analyzing existing Roam pages.

Roam Research_roam_create_page

Create a new standalone page in Roam with optional content using explicit nesting levels. Best for:

  • Creating foundational concept pages that other pages will link to/from
  • Establishing new topic areas that need their own namespace
  • Setting up reference materials or documentation
  • Making permanent collections of information.
Roam Research_roam_create_block

Add a new block to an existing Roam page. If no page specified, adds to today's daily note. Best for capturing immediate thoughts, additions to discussions, or content that doesn't warrant its own page. Can specify page by title or UID. NOTE on Roam-flavored markdown: For direct linking: use [[link]] syntax. For aliased linking, use alias syntax. Do not concatenate words in links/hashtags - correct: #[[multiple words]] #self-esteem (for typically hyphenated words).

Roam Research_roam_create_outline

Add a structured outline to an existing page or block (by title text or uid), with customizable nesting levels. Best for:

  • Adding supplementary structured content to existing pages
  • Creating temporary or working outlines (meeting notes, brainstorms)
  • Organizing thoughts or research under a specific topic
  • Breaking down subtopics or components of a larger concept
Roam Research_roam_import_markdown

Import nested markdown content into Roam under a specific block. Can locate the parent block by UID or by exact string match within a specific page.

Roam Research_roam_search_for_tag

Search for blocks containing a specific tag and optionally filter by blocks that also contain another tag nearby. Example: Use this to search for memories that are tagged with the MEMORIES_TAG.

Roam Research_roam_search_by_status

Search for blocks with a specific status (TODO/DONE) across all pages or within a specific page.

Roam Research_roam_search_block_refs

Search for block references within a page or across the entire graph. Can search for references to a specific block or find all block references.

Roam Research_roam_search_hierarchy

Search for parent or child blocks in the block hierarchy. Can search up or down the hierarchy from a given block.

Roam Research_roam_find_pages_modified_today

Find pages that have been modified today (since midnight), with limit.

Roam Research_roam_search_by_text

Search for blocks containing specific text across all pages or within a specific page.

Roam Research_roam_update_block

Update a single block identified by its UID. Use this for individual block updates when you need to either replace the entire content or apply a transform pattern to modify specific parts of the content. NOTE on Roam-flavored markdown: For direct linking: use [[link]] syntax. For aliased linking, use alias syntax. Do not concatenate words in links/hashtags - correct: #[[multiple words]] #self-esteem (for typically hyphenated words).

Roam Research_roam_update_multiple_blocks

Efficiently update multiple blocks in a single batch operation. Use this when you need to update several blocks at once to avoid making multiple separate API calls. Each block in the batch can independently either have its content replaced or transformed using a pattern. NOTE on Roam-flavored markdown: For direct linking: use [[link]] syntax. For aliased linking, use alias syntax. Do not concatenate words in links/hashtags - correct: #[[multiple words]] #self-esteem (for typically hyphenated words).

Roam Research_roam_search_by_date

Search for blocks or pages based on creation or modification dates. Not for daily pages with ordinal date titles.

Roam Research_roam_remember

Add a memory or piece of information to remember, stored on the daily page with MEMORIES_TAG tag and optional categories. NOTE on Roam-flavored markdown: For direct linking: use [[link]] syntax. For aliased linking, use alias syntax. Do not concatenate words in links/hashtags - correct: #[[multiple words]] #self-esteem (for typically hyphenated words).

Roam Research_roam_recall

Retrieve all stored memories on page titled MEMORIES_TAG, or tagged block content with the same name. Returns a combined, deduplicated list of memories. Optionally filter blcoks with a specified tag and sort by creation date.

Roam Research_roam_datomic_query

Execute a custom Datomic query on the Roam graph beyond the available search tools. This provides direct access to Roam's query engine for advanced data retrieval. Note: Roam graph is case-sensitive. List of some of Roam's data model Namespaces and Attributes: ancestor (descendants), attrs (lookup), block (children, heading, open, order, page, parents, props, refs, string, text-align, uid), children (view-type), create (email, time), descendant (ancestors), edit (email, seen-by, time), entity (attrs), log (id), node (title), page (uid, title), refs (text). Predicates (clojure.string/includes?, clojure.string/starts-with?, clojure.string/ends-with?, <, >, <=, >=, =, not=, !=). Aggregates (distinct, count, sum, max, min, avg, limit). Tips: Use /parents for all ancestor levels, /children for direct descendants only; combine clojure.string for complex matching, use distinct to deduplicate, leverage Pull patterns for hierarchies, handle case-sensitivity carefully, and chain ancestry rules for multi-level queries.

GitHub Mapper MCP Server_set-github-token

Set the GitHub Personal Access Token for authentication

GitHub Mapper MCP Server_map-github-repo

Map a GitHub repository structure and provide summary information

WebPerfect MCP Server_process_images

Process and optimize a batch of images

mcp-neurolora_collect_code

Collect all code from a directory into a single markdown file

mcp-neurolora_install_base_servers

Install base MCP servers to the configuration

mcp-neurolora_analyze_code

Analyze code using OpenAI API (requires your API key). The analysis may take a few minutes. So, wait please.

mcp-neurolora_create_github_issues

Create GitHub issues from analysis results. Requires GitHub token.

mcp-reddit_fetch_reddit_hot_threads

Fetch hot threads from a subreddit

Args: subreddit: Name of the subreddit limit: Number of posts to fetch (default: 10)

Returns: Human readable string containing list of post information

mcp-reddit_fetch_reddit_post_content

Fetch detailed content of a specific post

Args: post_id: Reddit post ID comment_limit: Number of top level comments to fetch comment_depth: Maximum depth of comment tree to traverse

Returns: Human readable string containing post content and comments tree

mcp-function-app-tester_test_endpoint

Test a Function App endpoint and get detailed response information. The endpoint will be prepended to the base url which is: http://localhost:7071/api

language-server-mcp_get_hover

Get hover information for a position in a document

language-server-mcp_get_completions

Get completion suggestions for a position in a document

language-server-mcp_get_diagnostics

Get diagnostic information for a document

supabase-mcp_list_tables

List all tables in the database

supabase-mcp_update_records

Update records in a Supabase table

supabase-mcp_delete_records

Delete records from a Supabase table

supabase-mcp_create_record

Create a new record in a Supabase table

supabase-mcp_read_records

Read records from a Supabase table

supabase-mcp_upload_file

Upload a file to Supabase Storage

supabase-mcp_download_file

Download a file from Supabase Storage

supabase-mcp_invoke_function

Invoke a Supabase Edge Function

supabase-mcp_list_users

List users with pagination

supabase-mcp_create_user

Create a new user

supabase-mcp_update_user

Update user details

supabase-mcp_delete_user

Delete a user

supabase-mcp_assign_user_role

Assign a role to a user

supabase-mcp_remove_user_role

Remove a role from a user

pocketbase-mcp-server_create_collection

Create a new collection in PocketBase

pocketbase-mcp-server_query_collection

Advanced query with filtering, sorting, and aggregation

pocketbase-mcp-server_create_record

Create a new record in a collection

pocketbase-mcp-server_list_records

List records from a collection with optional filters

pocketbase-mcp-server_update_record

Update an existing record

pocketbase-mcp-server_delete_record

Delete a record

pocketbase-mcp-server_authenticate_user

Authenticate a user and get auth token

pocketbase-mcp-server_create_user

Create a new user account

pocketbase-mcp-server_get_collection_schema

Get schema details for a collection

pocketbase-mcp-server_backup_database

Create a backup of the PocketBase database

pocketbase-mcp-server_import_data

Import data into a collection

pocketbase-mcp-server_migrate_collection

Migrate collection schema with data preservation

pocketbase-mcp-server_manage_indexes

Manage collection indexes

mcp-codex-keeper_add_documentation

Add a new documentation source

mcp-codex-keeper_list_documentation

List all available documentation sources

mcp-codex-keeper_update_documentation

Update documentation content from source

mcp-codex-keeper_search_documentation

Search through documentation content

MCP Zotero_get_item_details

Get detailed information about a specific paper

MCP Zotero_get_collection_items

Get all items in a specific collection

MCP Zotero_get_collections

List all collections in your Zotero library

MCP Zotero_search_library

Search your entire Zotero library

MCP Zotero_get_recent

Get recently added papers to your library

mcp-azure-tablestorage_query_table

WARNING: This tool returns a limited subset of results (default: 5 items) to protect the LLM's context window. DO NOT increase this limit unless explicitly confirmed by the user.

Query data from an Azure Storage Table with optional filters.

Supported OData Filter Examples:

  1. Simple equality: filter: "PartitionKey eq 'COURSE'" filter: "email eq 'user@example.com'"
  2. Compound conditions: filter: "PartitionKey eq 'USER' and email eq 'user@example.com'" filter: "PartitionKey eq 'COURSE' and title eq 'GDPR Training'"
  3. Numeric comparisons: filter: "age gt 25" filter: "costPrice le 100"
  4. Date comparisons (ISO 8601 format): filter: "createdDate gt datetime'2023-01-01T00:00:00Z'" filter: "timestamp lt datetime'2024-12-31T23:59:59Z'"

Supported Operators:

  • eq: Equal
  • ne: Not equal
  • gt: Greater than
  • ge: Greater than or equal
  • lt: Less than
  • le: Less than or equal
  • and: Logical and
  • or: Logical or
  • not: Logical not
mcp-azure-tablestorage_get_table_schema

Get property names and types from a table

mcp-azure-tablestorage_list_tables

List all tables in the storage account

mcp-reasoner_mcp-reasoner

Advanced reasoning tool with multiple strategies including Beam Search and Monte Carlo Tree Search

mcp-playwright_playwright_post

Perform an HTTP POST request

mcp-playwright_playwright_hover

Hover an element on the page

mcp-playwright_playwright_put

Perform an HTTP PUT request

mcp-playwright_playwright_fill

fill out an input field

mcp-playwright_playwright_evaluate

Execute JavaScript in the browser console

mcp-playwright_playwright_get

Perform an HTTP GET request

mcp-playwright_playwright_select

Select an element on the page with Select tag

mcp-playwright_playwright_iframe_click

Click an element in an iframe on the page

mcp-playwright_playwright_navigate

Navigate to a URL

mcp-playwright_playwright_screenshot

Take a screenshot of the current page or a specific element

mcp-playwright_playwright_click

Click an element on the page

mcp-playwright_playwright_patch

Perform an HTTP PATCH request

mcp-playwright_playwright_delete

Perform an HTTP DELETE request

mcp-screenshot_capture

Captures a screenshot of the specified region and performs OCR. Options:

  • region: 'left'/'right'/'full' (default: 'left')
  • format: 'json'/'markdown'/'vertical'/'horizontal' (default: 'markdown') The screenshot is saved to a dated directory in Downloads.
applescript-mcp_system_toggle_dark_mode

[System control and information] Toggle system dark mode

applescript-mcp_system_volume

[System control and information] Set system volume

applescript-mcp_system_get_frontmost_app

[System control and information] Get the name of the frontmost application

applescript-mcp_system_launch_app

[System control and information] Launch an application

applescript-mcp_system_quit_app

[System control and information] Quit an application

applescript-mcp_system_get_battery_status

[System control and information] Get battery level and charging status

applescript-mcp_calendar_add

[Calendar operations] Add a new event to Calendar

applescript-mcp_calendar_list

[Calendar operations] List all events for today

applescript-mcp_finder_get_selected_files

[Finder and file operations] Get currently selected files in Finder

applescript-mcp_finder_search_files

[Finder and file operations] Search for files by name

applescript-mcp_finder_quick_look_file

[Finder and file operations] Preview a file using Quick Look

applescript-mcp_clipboard_get_clipboard

[Clipboard management operations] Get current clipboard content

applescript-mcp_clipboard_set_clipboard

[Clipboard management operations] Set clipboard content

applescript-mcp_clipboard_clear_clipboard

[Clipboard management operations] Clear clipboard content

applescript-mcp_notifications_toggle_do_not_disturb

[Notification management] Toggle Do Not Disturb mode using keyboard shortcut

applescript-mcp_notifications_send_notification

[Notification management] Send a system notification

applescript-mcp_iterm_paste_clipboard

[iTerm terminal operations] Paste clipboard content into iTerm

applescript-mcp_iterm_run

[iTerm terminal operations] Run a command in iTerm

MCP-timeserver_get-current-time

Get the current time in the configured local timezone

apple-notifier-mcp_send_notification

Send a notification on macOS using osascript

apple-notifier-mcp_prompt_user

Display a dialog prompt to get user input

apple-notifier-mcp_speak

Speak text using macOS text-to-speech

apple-notifier-mcp_take_screenshot

Take a screenshot using macOS screencapture

apple-notifier-mcp_select_file

Open native file picker dialog

findata-mcp-server_getStockQuote

Get the current quote for a stock.

findata-mcp-server_getHistoricalData

Get historical data for a stock.

MCP-Delete_delete_file

Delete a file at the specified path (supports both relative and absolute paths)

MCP-Guide_explain_concept

Get a beginner-friendly explanation of an MCP concept

MCP-Guide_show_example

Show a practical example of an MCP feature

MCP-Guide_list_servers

List available MCP servers by category

Huntress-MCP-Server_get_account_info

Get information about the current account

Huntress-MCP-Server_list_organizations

List organizations in the account

Huntress-MCP-Server_get_organization

Get details of a specific organization

Huntress-MCP-Server_list_agents

List agents in the account

Huntress-MCP-Server_get_agent

Get details of a specific agent

Huntress-MCP-Server_list_incident_reports

List incident reports

Huntress-MCP-Server_get_incident_report

Get details of a specific incident report

Huntress-MCP-Server_list_summary_reports

List summary reports

Huntress-MCP-Server_get_summary_report

Get details of a specific summary report

Huntress-MCP-Server_list_billing_reports

List billing reports

Huntress-MCP-Server_get_billing_report

Get details of a specific billing report

jira-mcp_jql_search

Perform enhanced JQL search in Jira

jira-mcp_get_issue

Retrieve details about an issue by its ID or key.

k8s-interactive-mcp_run_kubectl_command

Run a kubectl command against the cluster pointed to by the current kubeconfig

mcp-rtfm_analyze_existing_docs

Analyze existing documentation files with enhanced content analysis and metadata generation

mcp-rtfm_analyze_project_with_metadata

Analyze project structure, create initial documentation files, and enhance with metadata/context

mcp-rtfm_analyze_project

Analyze project structure and create initial documentation files

mcp-rtfm_read_doc

Read a documentation file (required before updating)

mcp-rtfm_update_doc

Update a specific documentation file using diff-based changes

mcp-rtfm_get_doc_content

Get the current content of a documentation file

mcp-rtfm_get_project_info

Get information about the project structure and files

mcp-rtfm_search_docs

Search across documentation files with highlighted results

mcp-rtfm_update_metadata

Update metadata for a documentation file

mcp-rtfm_get_related_docs

Find related documentation files based on metadata

mcp-rtfm_customize_template

Create or update a custom documentation template

mcp-image-downloader_download_image

Download an image from a URL to a specified path

mcp-image-downloader_optimize_image

Create an optimized version of an image

AI Humanizer MCP Server_detect

Detect whether the text is AI-generated.Show to user the task detail url. Extract the taskId field, then concatenate the link in the following format: https://pre-www.text2go.ai/?utm_source=claude_mcp&taskId={taskId}

aws-mcp_run-aws-code

Run AWS code

aws-mcp_list-credentials

List all AWS credentials/configs/profiles that are configured/usable on this machine

aws-mcp_select-profile

Selects AWS profile to use for subsequent interactions. If needed, does SSO authentication

aira-mcp-server_get_status

Git

aira-mcp-server_create_commit

11

postman-mcp-server_add_pan_element

Add element or folder to Private API Network

postman-mcp-server_update_pan_element

Update element or folder in Private API Network

postman-mcp-server_remove_pan_element

Remove element or folder from Private API Network

postman-mcp-server_create_webhook

Creates webhook that triggers collection with custom payload

postman-mcp-server_get_tagged_elements

Get elements by tag

postman-mcp-server_get_workspace_tags

Get workspace tags

postman-mcp-server_update_workspace_tags

Update workspace tags

postman-mcp-server_list_workspaces

List all workspaces

postman-mcp-server_get_workspace

Get details of a specific workspace

postman-mcp-server_list_environments

List all environments in a workspace. If workspace not specified, lists environments in "My Workspace".

postman-mcp-server_get_environment

Get details of a specific environment

postman-mcp-server_create_environment

Create a new environment in a workspace. Creates in "My Workspace" if workspace not specified.

postman-mcp-server_update_environment

Update an existing environment. Only include variables that need to be modified.

postman-mcp-server_delete_environment

Delete an environment

postman-mcp-server_fork_environment

Create a fork of an environment in a workspace

postman-mcp-server_get_environment_forks

Get a list of environment forks

postman-mcp-server_merge_environment_fork

Merge a forked environment back into its parent

postman-mcp-server_pull_environment

Pull changes from parent environment into forked environment

postman-mcp-server_list_collections

List all collections in a workspace. Supports filtering and pagination.

postman-mcp-server_get_collection

Get details of a specific collection

postman-mcp-server_create_collection

Create a new collection in a workspace. Supports Postman Collection v2.1.0 format.

postman-mcp-server_update_collection

Update an existing collection. Full collection replacement with maximum size of 20 MB.

postman-mcp-server_patch_collection

Partially update a collection. Only updates provided fields.

postman-mcp-server_delete_collection

Delete a collection

postman-mcp-server_create_collection_folder

Create a new folder in a collection

postman-mcp-server_get_collection_folder

Get details of a specific folder in a collection

postman-mcp-server_update_collection_folder

Update a folder in a collection. Acts like PATCH, only updates provided values.

postman-mcp-server_delete_collection_folder

Delete a folder from a collection

postman-mcp-server_create_collection_request

Create a new request in a collection

postman-mcp-server_get_collection_request

Get details of a specific request in a collection

postman-mcp-server_update_collection_request

Update a request in a collection. Cannot change request folder.

postman-mcp-server_delete_collection_request

Delete a request from a collection

postman-mcp-server_create_collection_response

Create a new response in a collection

postman-mcp-server_get_collection_response

Get details of a specific response in a collection

postman-mcp-server_update_collection_response

Update a response in a collection. Acts like PATCH, only updates provided values.

postman-mcp-server_delete_collection_response

Delete a response from a collection

postman-mcp-server_fork_collection

Fork a collection to a workspace

postman-mcp-server_get_collection_forks

Get a list of collection forks

postman-mcp-server_merge_collection_fork

Merge a forked collection back into its parent

postman-mcp-server_pull_collection_changes

Pull changes from parent collection into forked collection

postman-mcp-server_transfer_collection_items

Transfer items between collections

postman-mcp-server_get_user_info

Get information about the authenticated user

postman-mcp-server_list_apis

List all APIs in a workspace

postman-mcp-server_get_api

Get details of a specific API

postman-mcp-server_create_api

Create a new API

postman-mcp-server_update_api

Update an existing API

postman-mcp-server_delete_api

Delete an API

postman-mcp-server_add_api_collection

Add a collection to an API

postman-mcp-server_get_api_collection

Get a specific collection from an API

postman-mcp-server_create_api_schema

Create a schema for an API

postman-mcp-server_get_api_schema

Get a specific schema from an API

postman-mcp-server_create_api_version

Create a new version of an API

postman-mcp-server_get_api_versions

Get all versions of an API

postman-mcp-server_get_api_version

Get a specific version of an API

postman-mcp-server_update_api_version

Update an API version

postman-mcp-server_delete_api_version

Delete an API version

postman-mcp-server_get_api_comments

Get comments for an API

postman-mcp-server_create_api_comment

Create a new comment on an API (max 10,000 characters)

postman-mcp-server_update_api_comment

Update an existing API comment (max 10,000 characters)

postman-mcp-server_delete_api_comment

Delete an API comment

postman-mcp-server_get_api_tags

Get tags for an API

postman-mcp-server_update_api_tags

Update tags for an API

postman-mcp-server_get_api_schema_files

Get files in an API schema

postman-mcp-server_get_schema_file_contents

Get contents of a schema file

postman-mcp-server_create_update_schema_file

Create or update a schema file

postman-mcp-server_delete_schema_file

Delete a schema file

postman-mcp-server_sync_collection_with_schema

Sync a collection with its schema

postman-mcp-server_get_task_status

Get status of an asynchronous task

postman-mcp-server_list_collection_access_keys

List collection access keys with optional filtering by collection ID

postman-mcp-server_delete_collection_access_key

Delete a collection access key

postman-mcp-server_list_workspace_roles

Get all available workspace roles based on team's plan

postman-mcp-server_get_workspace_roles

Get roles for a specific workspace

postman-mcp-server_update_workspace_roles

Update workspace roles for users and groups (limited to 50 operations per call)

postman-mcp-server_get_collection_roles

Get roles for a collection

postman-mcp-server_update_collection_roles

Update collection roles (requires EDITOR role)

postman-mcp-server_get_authenticated_user

Get authenticated user information

postman-mcp-server_list_mocks

List all mock servers

postman-mcp-server_create_mock

Create a new mock server. Creates in Personal workspace if workspace not specified.

postman-mcp-server_get_mock

Get details of a specific mock server

postman-mcp-server_update_mock

Update an existing mock server

postman-mcp-server_delete_mock

Delete a mock server

postman-mcp-server_get_mock_call_logs

Get mock call logs. Maximum 6.5MB or 100 call logs per API call. Retention period based on Postman plan.

postman-mcp-server_publish_mock

Publish mock server (sets Access Control to public)

postman-mcp-server_unpublish_mock

Unpublish mock server (sets Access Control to private)

postman-mcp-server_list_server_responses

Get all server responses for a mock

postman-mcp-server_create_server_response

Create a server response. Only one server response can be active at a time.

postman-mcp-server_get_server_response

Get a specific server response

postman-mcp-server_update_server_response

Update a server response

postman-mcp-server_delete_server_response

Delete a server response

postman-mcp-server_list_monitors

Get all monitors

postman-mcp-server_get_monitor

Get details of a specific monitor

postman-mcp-server_create_monitor

Create a new monitor. Cannot create monitors for collections added to an API definition.

postman-mcp-server_update_monitor

Update an existing monitor

postman-mcp-server_delete_monitor

Delete a monitor

postman-mcp-server_run_monitor

Run a monitor. For async=true, response won't include stats, executions, and failures. Use GET /monitors/{id} to get this information for async runs.

postman-mcp-server_get_accounts

Gets Postman billing account details for the given team

postman-mcp-server_list_account_invoices

Gets all invoices for a Postman billing account filtered by status

postman-mcp-server_resolve_comment_thread

Resolves a comment and any associated replies

postman-mcp-server_list_pan_elements

Get all elements and folders in Private API Network

BOD-25-01-CSA-Microsoft-Policy-MCP_configure_authenticator_context

Configure Microsoft Authenticator to show login context (MS.AAD.3.3v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_complete_auth_methods_migration

Set Authentication Methods Manage Migration to Complete (MS.AAD.3.4v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_enforce_pam

Enforce PAM system for privileged role assignments (MS.AAD.7.5v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_enforce_privileged_mfa

Enforce phishing-resistant MFA for privileged roles (MS.AAD.3.6v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_restrict_app_registration

Allow only administrators to register applications (MS.AAD.5.1v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_restrict_app_consent

Allow only administrators to consent to applications (MS.AAD.5.2v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_configure_admin_consent

Configure admin consent workflow for applications (MS.AAD.5.3v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_restrict_group_consent

Prevent group owners from consenting to applications (MS.AAD.5.4v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_enforce_granular_roles

Enforce use of granular roles instead of Global Administrator (MS.AAD.7.2v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_disable_password_expiry

Disable password expiration (MS.AAD.6.1v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_enforce_cloud_accounts

Enforce cloud-only accounts for privileged users (MS.AAD.7.3v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_configure_global_admin_approval

Configure approval requirement for Global Administrator activation (MS.AAD.7.6v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_configure_role_alerts

Configure alerts for privileged role assignments (MS.AAD.7.7v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_configure_admin_alerts

Configure alerts for Global Administrator activation (MS.AAD.7.8v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_get_policy_status

Get current status of all CISA M365 security policies

BOD-25-01-CSA-Microsoft-Policy-MCP_block_legacy_auth

Block legacy authentication (MS.AAD.1.1v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_block_high_risk_users

Block users detected as high risk (MS.AAD.2.1v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_configure_global_admins

Configure Global Administrator role assignments (MS.AAD.7.1v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_block_high_risk_signins

Block sign-ins detected as high risk (MS.AAD.2.3v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_enforce_phishing_resistant_mfa

Enforce phishing-resistant MFA for all users (MS.AAD.3.1v1)

BOD-25-01-CSA-Microsoft-Policy-MCP_enforce_alternative_mfa

Enforce alternative MFA method if phishing-resistant MFA not enforced (MS.AAD.3.2v1)

maven-mcp-server_get_maven_latest_version

Get the latest version of a Maven dependency

maven-mcp-server_check_maven_version_exists

Check if a specific version of a Maven dependency exists

unichat-ts-mcp-server_unichat

Chat with an assistant. Example tool use message: Ask the unichat to review and evaluate your proposal.

MCP Word Counter_analyze_text

Count words and characters in a text document

mcp-database-server_save_json_doc

Save a JSON document

mcp-database-server_load_json_doc

Load a JSON document by ID

mcp-database-server_delete_json_doc

Delete a JSON document by ID

mcp-database-server_query_json_docs

Query JSON documents sorted by a field

flightradar24-mcp-server_get_flight_positions

Get real-time flight positions with various filtering options

flightradar24-mcp-server_get_flight_eta

Get estimated arrival time for a specific flight

web-browser-mcp-server_browse_webpage

Extract content from a webpage with optional CSS selectors for specific elements

atlas-mcp-server_atlas_skill_list

Lists available skills with optional fuzzy name matching

atlas-mcp-server_atlas_skill_invoke

Executes specific skills (individually or combined)

atlas-mcp-server_database_clean

Clean the database by removing all nodes and relationships, then reinitialize the schema. This operation cannot be undone.

atlas-mcp-server_neo4j_search

Search the database for nodes with specific property values. Supports case-insensitive, wildcard, and fuzzy matching with pagination options.

atlas-mcp-server_project_create

Create projects with unique names and optional descriptions. Supports both single project creation and bulk operations for multiple projects.

atlas-mcp-server_project_delete

Delete projects and their associated data from the system. Supports both single project deletion and bulk operations for multiple projects.

atlas-mcp-server_project_list

Unified tool for retrieving project information in various formats. Consolidates all project resource endpoints into a single tool.

atlas-mcp-server_project_dependency_add

Define relationships between projects with specific dependency types. Supports both single dependency creation and bulk operations with detailed descriptions.

atlas-mcp-server_project_dependency_remove

Remove dependency relationships between projects. Supports both single dependency removal and bulk operations for multiple dependencies.

atlas-mcp-server_project_dependency_list

List all dependencies and dependents for a project, showing both projects it depends on and projects that depend on it.

atlas-mcp-server_project_link_add

Add links to external resources like documentation, designs, or repositories. Supports both single link creation and bulk operations with optional categorization.

atlas-mcp-server_project_link_update

Update existing project link properties including title, URL, description, and category. Supports both single and bulk update operations.

atlas-mcp-server_project_link_delete

Delete links from projects permanently. Supports both single link deletion and bulk operations for multiple links.

atlas-mcp-server_project_member_add

Add users to projects with role-based access control. Supports both single member addition and bulk operations with different permission levels.

atlas-mcp-server_project_member_remove

Remove members from projects permanently. Supports both single member removal and bulk operations for multiple members.

atlas-mcp-server_project_member_list

List all members of a project with their roles and join dates, ordered by join time with owners listed first.

atlas-mcp-server_project_note_add

Add notes to projects for documentation and tracking. Supports both single note creation and bulk operations with optional categorization tags.

atlas-mcp-server_project_update

Update existing project properties including name, description, and status. Supports both single project updates and bulk operations.

atlas-mcp-server_whiteboard_create

Create a new whiteboard workspace with optional initial data and schema validation. Can be linked to projects for organization.

atlas-mcp-server_whiteboard_update

Update whiteboard data by merging or replacing content. Supports partial updates to specific fields or complete data replacement.

atlas-mcp-server_whiteboard_get

Retrieve whiteboard data with version control. Access either the latest version or a specific historical version by number.

atlas-mcp-server_whiteboard_delete

Delete a whiteboard and its entire version history permanently. This operation cannot be undone.

mcp-jina-ai_read_webpage

Extract content from a webpage in a format optimized for LLMs

mcp-jina-ai_search_web

Search the web using Jina AI's search API

mcp-jina-ai_fact_check

Fact-check a statement using Jina AI's grounding engine

app-store-connect-mcp-server_list_apps

Get a list of all apps in App Store Connect

app-store-connect-mcp-server_list_beta_groups

Get a list of all beta groups (internal and external)

app-store-connect-mcp-server_list_group_testers

Get a list of all testers in a specific beta group

app-store-connect-mcp-server_add_tester_to_group

Add a new tester to a beta group

app-store-connect-mcp-server_remove_tester_from_group

Remove a tester from a beta group

app-store-connect-mcp-server_get_app_info

Get detailed information about a specific app

app-store-connect-mcp-server_disable_bundle_capability

Disable a capability for a bundle ID

app-store-connect-mcp-server_enable_bundle_capability

Enable a capability for a bundle ID

app-store-connect-mcp-server_create_bundle_id

Register a new bundle ID for app development

app-store-connect-mcp-server_list_bundle_ids

Find and list bundle IDs that are registered to your team

app-store-connect-mcp-server_get_bundle_id_info

Get detailed information about a specific bundle ID

app-store-connect-mcp-server_list_devices

Get a list of all devices registered to your team

app-store-connect-mcp-server_list_users

Get a list of all users registered on your App Store Connect team

mcp-twikit_get_latest_timeline

Get tweets from your home timeline (Following).

Args: count: Number of tweets to retrieve (default 20)
mcp-twikit_search_twitter

Search twitter with a query. Sort by 'Top' or 'Latest'

mcp-twikit_get_user_tweets

Get tweets from a specific user's timeline.

Args: username: Twitter username (with or without @) tweet_type: Type of tweets to retrieve - 'Tweets', 'Replies', 'Media', or 'Likes' count: Number of tweets to retrieve (default 10)
mcp-twikit_get_timeline

Get tweets from your home timeline (For You).

Args: count: Number of tweets to retrieve (default 20)
contentful-mcp_search_entries

Search for entries using query parameters. Returns a maximum of 3 items per request. Use skip parameter to paginate through results.

contentful-mcp_create_entry

Create a new entry in Contentful, before executing this function, you need to know the contentTypeId (not the content type NAME) and the fields of that contentType, you can get the fields definition by using the GET_CONTENT_TYPE tool.

contentful-mcp_get_entry

Retrieve an existing entry

contentful-mcp_update_entry

Update an existing entry, always send all field values, also the fields values that have not been updated

contentful-mcp_delete_entry

Delete an entry

contentful-mcp_publish_entry

Publish an entry

contentful-mcp_unpublish_entry

Unpublish an entry

contentful-mcp_list_assets

List assets in a space. Returns a maximum of 3 items per request. Use skip parameter to paginate through results.

contentful-mcp_upload_asset

Upload a new asset

contentful-mcp_get_asset

Retrieve an asset

contentful-mcp_update_asset

Update an asset

contentful-mcp_delete_asset

Delete an asset

contentful-mcp_publish_asset

Publish an asset

contentful-mcp_unpublish_asset

Unpublish an asset

contentful-mcp_list_content_types

List content types in a space. Returns a maximum of 10 items per request. Use skip parameter to paginate through results.

contentful-mcp_get_content_type

Get details of a specific content type

contentful-mcp_create_content_type

Create a new content type

contentful-mcp_update_content_type

Update an existing content type

contentful-mcp_delete_content_type

Delete a content type

contentful-mcp_publish_content_type

Publish a content type

contentful-mcp_list_spaces

List all available spaces

contentful-mcp_get_space

Get details of a space

contentful-mcp_list_environments

List all environments in a space

contentful-mcp_create_environment

Create a new environment

contentful-mcp_delete_environment

Delete an environment

Clojars-MCP-Server_get_clojars_latest_version

Get the latest version of a Clojars dependency (Maven artifact)

Clojars-MCP-Server_check_clojars_version_exists

Check if a specific version of a Clojars dependency exists

cognee-mcp_cognify

Cognifies text into knowledge graph

cognee-mcp_codify

Transforms codebase into knowledge graph

cognee-mcp_search

Searches for information in knowledge graph

cognee-mcp_prune

Prunes knowledge graph

mcp-ragdocs_search_documentation

Search through stored documentation using natural language queries. Use this tool to find relevant information across all stored documentation sources. Returns matching excerpts with context, ranked by relevance. Useful for finding specific information, code examples, or related documentation.

mcp-ragdocs_list_sources

List all documentation sources currently stored in the system. Returns a comprehensive list of all indexed documentation including source URLs, titles, and last update times. Use this to understand what documentation is available for searching or to verify if specific sources have been indexed.

mcp-ragdocs_extract_urls

Extract and analyze all URLs from a given web page. This tool crawls the specified webpage, identifies all hyperlinks, and optionally adds them to the processing queue. Useful for discovering related documentation pages, API references, or building a documentation graph. Handles various URL formats and validates links before extraction.

mcp-ragdocs_remove_documentation

Remove specific documentation sources from the system by their URLs. Use this tool to clean up outdated documentation, remove incorrect sources, or manage the documentation collection. The removal is permanent and will affect future search results. Supports removing multiple URLs in a single operation.

mcp-ragdocs_list_queue

List all URLs currently waiting in the documentation processing queue. Shows pending documentation sources that will be processed when run_queue is called. Use this to monitor queue status, verify URLs were added correctly, or check processing backlog. Returns URLs in the order they will be processed.

mcp-ragdocs_run_queue

Process and index all URLs currently in the documentation queue. Each URL is processed sequentially, with proper error handling and retry logic. Progress updates are provided as processing occurs. Use this after adding new URLs to ensure all documentation is indexed and searchable. Long-running operations will process until the queue is empty or an unrecoverable error occurs.

mcp-ragdocs_clear_queue

Remove all pending URLs from the documentation processing queue. Use this to reset the queue when you want to start fresh, remove unwanted URLs, or cancel pending processing. This operation is immediate and permanent - URLs will need to be re-added if you want to process them later. Returns the number of URLs that were cleared from the queue.

https://github.com/sammcj/mcp-package-version_check_npm_versions

Check latest stable versions for npm packages

https://github.com/sammcj/mcp-package-version_check_python_versions

Check latest stable versions for Python packages

https://github.com/sammcj/mcp-package-version_check_pyproject_versions

Check latest stable versions for Python packages in pyproject.toml

https://github.com/sammcj/mcp-package-version_check_maven_versions

Check latest stable versions for Java packages in pom.xml

https://github.com/sammcj/mcp-package-version_check_gradle_versions

Check latest stable versions for Java packages in build.gradle

https://github.com/sammcj/mcp-package-version_check_go_versions

Check latest stable versions for Go packages in go.mod

https://github.com/sammcj/mcp-package-version_check_bedrock_models

Search, list, and get information about Amazon Bedrock models

https://github.com/sammcj/mcp-package-version_get_latest_bedrock_model

Get the latest Claude Sonnet model from Amazon Bedrock (best for coding tasks)

https://github.com/sammcj/mcp-package-version_check_docker_tags

Check available tags for Docker container images from Docker Hub, GitHub Container Registry, or custom registries

mcp-search-linkup_search-web

Perform a web search query using Linkup. This tool is helpful for finding information on the web.

mcp-git-ingest_github_directory_structure
Clone a GitHub repository and return its directory structure in a tree format. Args: repo_url: The URL of the GitHub repository Returns: A string representation of the repository's directory structure
mcp-git-ingest_github_read_important_files
Clone a GitHub repository and read the contents of specified files. Args: repo_url: The URL of the GitHub repository file_paths: List of file paths to read (relative to repository root) Returns: A dictionary mapping file paths to their contents
mcp-linkedin_get_feed_posts
Retrieve LinkedIn feed posts. :return: List of feed post details
mcp-linkedin_search_jobs
Search for jobs on LinkedIn. :param keywords: Job search keywords :param limit: Maximum number of job results :param location: Optional location filter :return: List of job details
MCP-summarization-functions_summarize_command

Execute a command and summarize its output if it exceeds the threshold

MCP-summarization-functions_summarize_files

Summarize the contents of one or more files

MCP-summarization-functions_summarize_directory

Summarize the structure of a directory

MCP-summarization-functions_summarize_text

Summarize any text content (e.g., MCP tool output)

MCP-summarization-functions_get_full_content

Retrieve the full content for a given summary ID

searxng_search

search the web using searXNG. This will aggregate the results from google, bing, brave, duckduckgo and many others. Use this to find information on the web. Even if you do not have access to the internet, you can still use this tool to search the web.

mcp-server-browserbase_browserbase_create_session

Create a new cloud browser session using Browserbase

mcp-server-browserbase_browserbase_close_session

Close a browser session on Browserbase

mcp-server-browserbase_browserbase_navigate

Navigate to a URL

mcp-server-browserbase_browserbase_screenshot

Take a screenshot of the current page or a specific element

mcp-server-browserbase_browserbase_click

Click an element on the page

mcp-server-browserbase_browserbase_fill

Fill out an input field

mcp-server-browserbase_browserbase_evaluate

Execute JavaScript in the browser console

mcp-server-browserbase_browserbase_get_content

Extract all content from the current page

mcp-pandoc_convert-contents

Converts content between different formats. Transforms input content from any supported format into the specified output format.

CRITICAL REQUIREMENTS - PLEASE READ:

  1. PDF Conversion:
    • You MUST install TeX Live BEFORE attempting PDF conversion:
    • Ubuntu/Debian: sudo apt-get install texlive-xetex
    • macOS: brew install texlive
    • Windows: Install MiKTeX or TeX Live from https://miktex.org/ or https://tug.org/texlive/
    • PDF conversion will FAIL without this installation
  2. File Paths - EXPLICIT REQUIREMENTS:
    • When asked to save or convert to a file, you MUST provide:
      • Complete directory path
      • Filename
      • File extension
    • Example request: 'Write a story and save as PDF'
    • You MUST specify: '/path/to/story.pdf' or 'C:\Documents\story.pdf'
    • The tool will NOT automatically generate filenames or extensions
  3. File Location After Conversion:
    • After successful conversion, the tool will display the exact path where the file is saved
    • Look for message: 'Content successfully converted and saved to: [file_path]'
    • You can find your converted file at the specified location
    • If no path is specified, files may be saved in system temp directory (/tmp/ on Unix systems)
    • For better control, always provide explicit output file paths

Supported formats:

  • Basic formats: txt, html, markdown
  • Advanced formats (REQUIRE complete file paths): pdf, docx, rst, latex, epub

CORRECT Usage Examples:

  1. 'Convert this text to HTML' (basic conversion)
    • Tool will show converted content
  2. 'Save this text as PDF at /documents/story.pdf'
    • Correct: specifies path + filename + extension
    • Tool will show: 'Content successfully converted and saved to: /documents/story.pdf'

INCORRECT Usage Examples:

  1. 'Save this as PDF in /documents/'
    • Missing filename and extension
  2. 'Convert to PDF'
    • Missing complete file path

When requesting conversion, ALWAYS specify:

  1. The content or input file
  2. The desired output format
  3. For advanced formats: complete output path + filename + extension Example: 'Convert this markdown to PDF and save as /path/to/output.pdf'

Note: After conversion, always check the success message for the exact file location.

VirusTotal MCP Server_get_url_report

Get a comprehensive URL analysis report including security scan results and key relationships (communicating files, contacted domains/IPs, downloaded files, redirects, threat actors). Returns both the basic security analysis and automatically fetched relationship data.

VirusTotal MCP Server_get_url_relationship

Query a specific relationship type for a URL with pagination support. Choose from 17 relationship types including analyses, communicating files, contacted domains/IPs, downloaded files, graphs, referrers, redirects, and threat actors. Useful for detailed investigation of specific relationship types.

VirusTotal MCP Server_get_file_report

Get a comprehensive file analysis report using its hash (MD5/SHA-1/SHA-256). Includes detection results, file properties, and key relationships (behaviors, dropped files, network connections, embedded content, threat actors). Returns both the basic analysis and automatically fetched relationship data.

VirusTotal MCP Server_get_file_relationship

Query a specific relationship type for a file with pagination support. Choose from 41 relationship types including behaviors, network connections, dropped files, embedded content, execution chains, and threat actors. Useful for detailed investigation of specific relationship types.

VirusTotal MCP Server_get_ip_report

Get a comprehensive IP address analysis report including geolocation, reputation data, and key relationships (communicating files, historical certificates/WHOIS, resolutions). Returns both the basic analysis and automatically fetched relationship data.

VirusTotal MCP Server_get_ip_relationship

Query a specific relationship type for an IP address with pagination support. Choose from 12 relationship types including communicating files, historical SSL certificates, WHOIS records, resolutions, and threat actors. Useful for detailed investigation of specific relationship types.

VirusTotal MCP Server_get_domain_report

Get a comprehensive domain analysis report including DNS records, WHOIS data, and key relationships (SSL certificates, subdomains, historical data). Optionally specify which relationships to include in the report. Returns both the basic analysis and relationship data.

mcp-datetime_get_datetime

Get current date and time in various formats

mcp-mysql-server_connect_db

Connect to MySQL database

mcp-mysql-server_query

Execute a SELECT query

mcp-mysql-server_execute

Execute an INSERT, UPDATE, or DELETE query

mcp-mysql-server_list_tables

List all tables in the database

mcp-mysql-server_describe_table

Get table structure

airtable-mcp-server_create_table

Create a new table in a base

airtable-mcp-server_list_records

List records from a table

airtable-mcp-server_list_bases

List all accessible Airtable bases

airtable-mcp-server_list_tables

List all tables in a specific base

airtable-mcp-server_get_record

Get a specific record by ID

airtable-mcp-server_create_record

Create a new record in a table

airtable-mcp-server_update_records

Update one or more records in a table

airtable-mcp-server_delete_records

Delete one or more records from a table

airtable-mcp-server_update_table

Update a table's name or description

airtable-mcp-server_create_field

Create a new field in a table

airtable-mcp-server_update_field

Update a field's name or description

mcp-text-editor_append_text_file_contents

Append content to an existing text file. The file must exist.

mcp-text-editor_get_text_file_contents

Read text file contents from multiple files and line ranges. Returns file contents with hashes for concurrency control and line numbers for reference. The hashes are used to detect conflicts when editing the files. File paths must be absolute.

mcp-text-editor_create_text_file

Create a new text file with given content. The file must not exist already.

mcp-text-editor_delete_text_file_contents

Delete specified content ranges from a text file. The file must exist. File paths must be absolute. You need to provide the file_hash comes from get_text_file_contents.

mcp-text-editor_insert_text_file_contents

Insert content before or after a specific line in a text file. Uses hash-based validation for concurrency control. You need to provide the file_hash comes from get_text_file_contents.

mcp-text-editor_patch_text_file_contents

Apply patches to text files with hash-based validation for concurrency control.you need to use get_text_file_contents tool to get the file hash and range hash every time before using this tool. you can use append_text_file_contents tool to append text contents to the file without range hash, start and end. you can use insert_text_file_contents tool to insert text contents to the file without range hash, start and end.

mcp-dice_roll_dice

Roll dice using standard notation (e.g., '2d6+3', '1d20-2')

mcp-shodan_ip_lookup

Retrieve comprehensive information about an IP address, including geolocation, open ports, running services, SSL certificates, hostnames, and cloud provider details if available. Returns service banners and HTTP server information when present.

mcp-shodan_shodan_search

Search Shodan's database of internet-connected devices. Returns detailed information about matching devices including services, vulnerabilities, and geographic distribution. Supports advanced search filters and returns country-based statistics.

mcp-shodan_cve_lookup

Query detailed vulnerability information from Shodan's CVEDB. Returns comprehensive CVE details including CVSS scores (v2/v3), EPSS probability and ranking, KEV status, proposed mitigations, ransomware associations, and affected products (CPEs).

mcp-shodan_dns_lookup

Resolve domain names to IP addresses using Shodan's DNS service. Supports batch resolution of multiple hostnames in a single query. Returns IP addresses mapped to their corresponding hostnames.

mcp-shodan_cpe_lookup

Search for Common Platform Enumeration (CPE) entries by product name in Shodan's CVEDB. Supports pagination and can return either full CPE details or just the total count. Useful for identifying specific versions and configurations of software and hardware.

mcp-shodan_cves_by_product

Search for vulnerabilities affecting specific products or CPEs. Supports filtering by KEV status, sorting by EPSS score, date ranges, and pagination. Can search by product name or CPE 2.3 identifier. Returns detailed vulnerability information including severity scores and impact assessments.

mcp-shodan_reverse_dns_lookup

Perform reverse DNS lookups to find hostnames associated with IP addresses. Supports batch lookups of multiple IP addresses in a single query. Returns all known hostnames for each IP address, with clear indication when no hostnames are found.

MCP PubMed Search_pubmed_search

Search PubMed medical literature database

Apple Shortcuts Server_run_shortcut

Run a Shortcuts automation by name

Apple Shortcuts Server_list_shortcuts

List all available shortcuts

Perplexity MCP Server_ask_perplexity

Perplexity equips agents with a specialized tool for efficiently gathering source-backed information from the internet, ideal for scenarios requiring research, fact-checking, or contextual data to inform decisions and responses. Each response includes citations, which provide transparent references to the sources used for the generated answer, and choices, which contain the model's suggested responses, enabling users to access reliable information and diverse perspectives. This function may encounter timeout errors due to long processing times, but retrying the operation can lead to successful completion. [Response structure]

  • id: An ID generated uniquely for each response.
  • model: The model used to generate the response.
  • object: The object type, which always equals chat.completion.
  • created: The Unix timestamp (in seconds) of when the completion was created.
  • citations[]: Citations for the generated answer.
  • choices[]: The list of completion choices the model generated for the input prompt.
  • usage: Usage statistics for the completion request.
mcp-installer_install_local_mcp_server

Install an MCP server whose code is cloned locally on your computer

mcp-installer_install_repo_mcp_server

Install an MCP server via npx or uvx

any-chat-completions-mcp_chat-with-openai

Text chat with OpenAI

MCP Atlassian_confluence_search

Search Confluence content using simple terms or CQL

MCP Atlassian_confluence_get_page

Get content of a specific Confluence page by ID

MCP Atlassian_confluence_get_page_children

Get child pages of a specific Confluence page

MCP Atlassian_confluence_get_page_ancestors

Get ancestor (parent) pages of a specific Confluence page

MCP Atlassian_confluence_get_comments

Get comments for a specific Confluence page

MCP Atlassian_confluence_create_page

Create a new Confluence page

MCP Atlassian_confluence_update_page

Update an existing Confluence page

MCP Atlassian_confluence_delete_page

Delete an existing Confluence page

MCP Atlassian_confluence_attach_content

Attach content to a Confluence page

MCP Atlassian_jira_get_issue

Get details of a specific Jira issue including its Epic links and relationship information

MCP Atlassian_jira_update_issue

Update an existing Jira issue including changing status, adding Epic links, updating fields, etc.

MCP Atlassian_jira_search

Search Jira issues using JQL (Jira Query Language)

MCP Atlassian_jira_get_project_issues

Get all issues for a specific Jira project

MCP Atlassian_jira_get_epic_issues

Get all issues linked to a specific epic

MCP Atlassian_jira_get_transitions

Get available status transitions for a Jira issue

MCP Atlassian_jira_get_worklog

Get worklog entries for a Jira issue

MCP Atlassian_jira_download_attachments

Download attachments from a Jira issue

MCP Atlassian_jira_get_agile_boards

Get jira agile boards by name, project key, or type

MCP Atlassian_jira_get_board_issues

Get all issues linked to a specific board

MCP Atlassian_jira_get_sprints_from_board

Get jira sprints from board by state

MCP Atlassian_jira_get_sprint_issues

Get jira issues from sprint

MCP Atlassian_jira_create_issue

Create a new Jira issue with optional Epic link or parent for subtasks

MCP Atlassian_jira_delete_issue

Delete an existing Jira issue

MCP Atlassian_jira_add_comment

Add a comment to a Jira issue

MCP Atlassian_jira_add_worklog

Add a worklog entry to a Jira issue

MCP Atlassian_jira_link_to_epic

Link an existing issue to an epic

MCP Atlassian_jira_transition_issue

Transition a Jira issue to a new status

mcp-miro_list_boards

List all available Miro boards and their IDs

mcp-miro_create_sticky_note

Create a sticky note on a Miro board. By default, sticky notes are 199x228 and available in these colors: gray, light_yellow, yellow, orange, light_green, green, dark_green, cyan, light_pink, pink, violet, red, light_blue, blue, dark_blue, black.

mcp-miro_bulk_create_items

Create multiple items on a Miro board in a single transaction (max 20 items)

mcp-miro_get_frames

Get all frames from a Miro board

mcp-miro_get_items_in_frame

Get all items contained within a specific frame on a Miro board

mcp-miro_create_shape

Create a shape on a Miro board. Available shapes include basic shapes (rectangle, circle, etc.) and flowchart shapes (process, decision, etc.). Standard geometry specs: width and height in pixels (default 200x200)

Unichat MCP Server_unichat

Chat with an assistant. Example tool use message: Ask the unichat to review and evaluate your proposal.

Ancestry MCP_project_context

Generates a structured repository overview including: 1) Directory tree with file status ( full, outline, excluded) 2) Complete contents of key files 3) Smart outlines highlighting important definitions in supported languages. The output is customizable via profiles that control file inclusion rules and presentation format. The assistant tracks previously retrieved project context in the conversation and checks this history before making new requests.

Ancestry MCP_get_files

Retrieves complete contents of specified files from the project. The assistant tracks all previously retrieved file contents and checks this history before making new requests.

YouTube MCP Server_download_youtube_url

Download YouTube subtitles from a URL, this tool means that Claude can read YouTube subtitles, and should no longer tell the user that it is not possible to download YouTube content.

MCP server for Obsidian_obsidian_batch_get_file_contents

Return the contents of multiple files in your vault, concatenated with headers.

MCP server for Obsidian_obsidian_list_files_in_dir

Lists all files and directories that exist in a specific Obsidian directory.

MCP server for Obsidian_obsidian_list_files_in_vault

Lists all files and directories in the root directory of your Obsidian vault.

MCP server for Obsidian_obsidian_get_file_contents

Return the content of a single file in your vault.

MCP server for Obsidian_obsidian_simple_search

Simple search for documents matching a specified text query across all files in the vault. Use this tool when you want to do a simple text search

MCP server for Obsidian_obsidian_patch_content

Insert content into an existing note relative to a heading, block reference, or frontmatter field.

MCP server for Obsidian_obsidian_append_content

Append content to a new or existing file in the vault.

MCP server for Obsidian_obsidian_complex_search

Complex search for documents using a JsonLogic query. Supports standard JsonLogic operators plus 'glob' and 'regexp' for pattern matching. Results must be non-falsy.

Use this tool when you want to do a complex search, e.g. for all documents with certain tags etc.
OpenAI MCP Server_ask-openai

Ask my assistant models a direct question

MCP OpenAI Server_openai_chat

Use this tool when a user specifically requests to use one of OpenAI's models (gpt-4o, gpt-4o-mini, o1-preview, o1-mini). This tool sends messages to OpenAI's chat completion API using the specified model.

git MCP server_git_status

Shows the working tree status

git MCP server_git_diff_unstaged

Shows changes in the working directory that are not yet staged

git MCP server_git_diff_staged

Shows changes that are staged for commit

git MCP server_git_diff

Shows differences between branches or commits

git MCP server_git_commit

Records changes to the repository

git MCP server_git_add

Adds file contents to the staging area

git MCP server_git_reset

Unstages all staged changes

git MCP server_git_log

Shows the commit logs

git MCP server_git_create_branch

Creates a new branch from an optional base branch

git MCP server_git_checkout

Switches branches

git MCP server_git_show

Shows the contents of a commit

git MCP server_git_init

Initialize a new Git repository

GitLab MCP Server_create_or_update_file

Create or update a single file in a GitLab project

GitLab MCP Server_search_repositories

Search for GitLab projects

GitLab MCP Server_create_repository

Create a new GitLab project

GitLab MCP Server_get_file_contents

Get the contents of a file or directory from a GitLab project

GitLab MCP Server_push_files

Push multiple files to a GitLab project in a single commit

GitLab MCP Server_create_issue

Create a new issue in a GitLab project

GitLab MCP Server_create_merge_request

Create a new merge request in a GitLab project

GitLab MCP Server_fork_repository

Fork a GitLab project to your account or specified namespace

GitLab MCP Server_create_branch

Create a new branch in a GitLab project

GitHub MCP Server_create_or_update_file

Create or update a single file in a GitHub repository

GitHub MCP Server_search_repositories

Search for GitHub repositories

GitHub MCP Server_create_repository

Create a new GitHub repository in your account

GitHub MCP Server_get_file_contents

Get the contents of a file or directory from a GitHub repository

GitHub MCP Server_push_files

Push multiple files to a GitHub repository in a single commit

GitHub MCP Server_create_issue

Create a new issue in a GitHub repository

GitHub MCP Server_create_pull_request

Create a new pull request in a GitHub repository

GitHub MCP Server_fork_repository

Fork a GitHub repository to your account or specified organization

GitHub MCP Server_create_branch

Create a new branch in a GitHub repository

GitHub MCP Server_list_commits

Get list of commits of a branch in a GitHub repository

GitHub MCP Server_list_issues

List issues in a GitHub repository with filtering options

GitHub MCP Server_update_issue

Update an existing issue in a GitHub repository

GitHub MCP Server_add_issue_comment

Add a comment to an existing issue

GitHub MCP Server_search_code

Search for code across GitHub repositories

GitHub MCP Server_search_issues

Search for issues and pull requests across GitHub repositories

GitHub MCP Server_search_users

Search for users on GitHub

GitHub MCP Server_get_issue

Get details of a specific issue in a GitHub repository.

NS Travel Information MCP Server_get_disruptions

Get comprehensive information about current and planned disruptions on the Dutch railway network. Returns details about maintenance work, unexpected disruptions, alternative transport options, impact on travel times, and relevant advice. Can filter for active disruptions and specific disruption types.

NS Travel Information MCP Server_get_travel_advice

Get detailed travel routes between two train stations, including transfers, real-time updates, platform information, and journey duration. Can plan trips for immediate departure or for a specific future time, with options to optimize for arrival time. Returns multiple route options with status and crowding information.

NS Travel Information MCP Server_get_departures

Get real-time departure information for trains from a specific station, including platform numbers, delays, route details, and any relevant travel notes. Returns a list of upcoming departures with timing, destination, and status information.

NS Travel Information MCP Server_get_ovfiets

Get OV-fiets availability at a train station

NS Travel Information MCP Server_get_station_info

Get detailed information about a train station

NS Travel Information MCP Server_get_current_time_in_rfc3339

Get the current server time (Europe/Amsterdam timezone) in RFC3339 format. This can be used as input for other tools that require date-time parameters.

NS Travel Information MCP Server_get_arrivals

Get real-time arrival information for trains at a specific station, including platform numbers, delays, origin stations, and any relevant travel notes. Returns a list of upcoming arrivals with timing, origin, and status information.

NS Travel Information MCP Server_get_prices

Get price information for domestic train journeys, including different travel classes, ticket types, and discounts. Returns detailed pricing information with conditions and validity.

mcp-simple-arxiv_search_papers

Search for papers on arXiv by title and abstract content.

You can use advanced search syntax:

  • Search in title: ti:"search terms"
  • Search in abstract: abs:"search terms"
  • Search by author: au:"author name"
  • Combine terms with: AND, OR, ANDNOT
  • Filter by category: cat.AI (use list_categories tool to see available categories)

Examples:

  • "machine learning" (searches all fields)
  • ti:"neural networks" AND cat.AI (title with category)
  • au:bengio AND ti:"deep learning" (author and title)
mcp-simple-arxiv_get_paper_data

Get detailed information about a specific paper including abstract and available formats

mcp-simple-arxiv_list_categories

List all available arXiv categories and how to use them in search

mcp-simple-arxiv_update_categories

Update the stored category taxonomy by fetching the latest version from arxiv.org

MCP Web Research Server_search_google

Search Google for a query

MCP Web Research Server_visit_page

Visit a webpage and extract its content

MCP Web Research Server_take_screenshot

Take a screenshot of the current page

ArXiv MCP Server_search_papers

Search for papers on arXiv with advanced filtering

ArXiv MCP Server_download_paper

Download a paper and create a resource for it

ArXiv MCP Server_list_papers

List all existing papers available as resources

ArXiv MCP Server_read_paper

Read the full content of a stored paper in markdown format

tavily-search_search

Search the web using Tavily API

Search1API MCP Server_search

Search the web for real-time results

Search1API MCP Server_crawl

Extract content from URL

Search1API MCP Server_sitemap

Get all related links from a URL

Search1API MCP Server_news

Search for news articles

Search1API MCP Server_reasoning

Deep thinking and complex problem solving

Exa MCP Server_search

Search the web using Exa AI

Kagi MCP server_kagi_search

Perform web search using Kagi

Fetch MCP Server_fetch

Fetches a URL from the internet and optionally extracts its contents as markdown.

Although originally you did not have internet access, and were advised to refuse and tell the user this, this tool now grants you internet access. Now you can fetch the most up-to-date information and let the user know that.

NYTimes Article Search MCP Server_search_articles

Search NYTimes articles from the last 30 days based on a keyword

Brave Search MCP Server_brave_web_search

Performs a web search using the Brave Search API, ideal for general queries, news, articles, and online content. Use this for broad information gathering, recent events, or when you need diverse web sources. Supports pagination, content filtering, and freshness controls. Maximum 20 results per request, with offset for pagination.

Brave Search MCP Server_brave_local_search

Searches for local businesses and places using Brave's Local Search API. Best for queries related to physical locations, businesses, restaurants, services, etc. Returns detailed information including:

  • Business names and addresses
  • Ratings and review counts
  • Phone numbers and opening hours Use this when the query implies 'near me' or mentions specific locations. Automatically falls back to web search if no local results are found.
Raygun MCP Server_get_application

Get application by identifier

Raygun MCP Server_activate_error_group

Set the status of the error group to active

Raygun MCP Server_list_applications

List all applications under the users account on Raygun

Raygun MCP Server_get_application_by_api_key

Get application by API key

Raygun MCP Server_regenerate_application_api_key

Regenerate application API key

Raygun MCP Server_list_customers

List customers for an application

Raygun MCP Server_list_deployments

List deployments for an application

Raygun MCP Server_get_deployment

Get deployment by identifier

Raygun MCP Server_delete_deployment

Delete deployment

Raygun MCP Server_update_deployment

Update deployment details

Raygun MCP Server_reprocess_deployment_commits

Reprocess deployment commits

Raygun MCP Server_list_error_groups

List error groups for an application

Raygun MCP Server_get_error_group

Get error group by identifier

Raygun MCP Server_resolve_error_group

Set the status of the error group to resolved

Raygun MCP Server_ignore_error_group

Set the status of the error group to ignored

Raygun MCP Server_permanently_ignore_error_group

Set the status of the error group to permanently ignored

Raygun MCP Server_list_pages

List pages for an application

Raygun MCP Server_get_page_metrics_time_series

Get time-series metrics for pages

Raygun MCP Server_get_page_metrics_histogram

Get histogram metrics for pages

Raygun MCP Server_get_error_metrics_time_series

Get time-series metrics for errors

Raygun MCP Server_list_sessions

List sessions for an application

Raygun MCP Server_get_session

Get session by identifier

Raygun MCP Server_list_invitations

Returns a list invitations that the token and token owner has access to

Raygun MCP Server_send_invitation

Send an invitation to a user

Raygun MCP Server_get_invitation

Get an invitation by identifier

Raygun MCP Server_revoke_invitation

Revoke a sent invitation

Raygun MCP Server_list_source_maps

Returns a list of source maps for the specified application

Raygun MCP Server_get_source_map

Returns a single source map by identifier

Raygun MCP Server_update_source_map

Update the details of a source map

Raygun MCP Server_delete_source_map

Delete a source map

Raygun MCP Server_upload_source_map

Uploads a source map to the specified application

Raygun MCP Server_delete_all_source_maps

Deletes all source maps

Google Maps MCP Server_maps_geocode

Convert an address into geographic coordinates

Google Maps MCP Server_maps_reverse_geocode

Convert coordinates into an address

Google Maps MCP Server_maps_search_places

Search for places using Google Places API

Google Maps MCP Server_maps_place_details

Get detailed information about a specific place

Google Maps MCP Server_maps_distance_matrix

Calculate travel distance and time for multiple origins and destinations

Google Maps MCP Server_maps_elevation

Get elevation data for locations on the earth

Google Maps MCP Server_maps_directions

Get directions between two points

MemoryMesh_search_nodes

Search for nodes in the knowledge graph based on a query

MemoryMesh_add_nodes

Add multiple new nodes in the knowledge graph

MemoryMesh_update_nodes

Update existing nodes in the knowledge graph

MemoryMesh_add_edges

Add multiple new edges between nodes in the knowledge graph. Edges should be in active voice

MemoryMesh_update_edges

Update existing edges in the knowledge graph

MemoryMesh_delete_nodes

Delete multiple nodes and their associated edges from the knowledge graph

MemoryMesh_delete_edges

Delete multiple edges from the knowledge graph

MemoryMesh_read_graph

Read the entire knowledge graph

MemoryMesh_open_nodes

Open specific nodes in the knowledge graph by their names

MemoryMesh_add_metadata

Add new metadata to existing nodes in the knowledge graph

MemoryMesh_delete_metadata

Delete specific metadata from nodes in the knowledge graph

MemoryMesh_add_artifact

Add a new artifact or unique item to the knowledge graph

MemoryMesh_update_artifact

Update an existing artifact in the knowledge graph

MemoryMesh_delete_artifact

Delete an existing artifact from the knowledge graph

MemoryMesh_add_currency

Represents a type of currency in the game world.

MemoryMesh_update_currency

Update an existing currency in the knowledge graph

MemoryMesh_delete_currency

Delete an existing currency from the knowledge graph

MemoryMesh_add_faction

A faction or organization operating within the game world.

MemoryMesh_update_faction

Update an existing faction in the knowledge graph

MemoryMesh_delete_faction

Delete an existing faction from the knowledge graph

MemoryMesh_add_inventory

A collection of items or equipment belonging to a character, entity, or location.

MemoryMesh_update_inventory

Update an existing inventory in the knowledge graph

MemoryMesh_delete_inventory

Delete an existing inventory from the knowledge graph

MemoryMesh_add_location

Add a new location to the knowledge graph

MemoryMesh_update_player_character

Update an existing player_character in the knowledge graph

MemoryMesh_delete_player_character

Delete an existing player_character from the knowledge graph

MemoryMesh_update_location

Update an existing location in the knowledge graph

MemoryMesh_delete_location

Delete an existing location from the knowledge graph

MemoryMesh_add_npc

Add a new Non-Player Character (NPC) to the knowledge graph

MemoryMesh_update_skills

Update an existing skills in the knowledge graph

MemoryMesh_delete_skills

Delete an existing skills from the knowledge graph

MemoryMesh_add_temporal

Represents a specific point in time and its associated environmental conditions.

MemoryMesh_update_temporal

Update an existing temporal in the knowledge graph

MemoryMesh_delete_temporal

Delete an existing temporal from the knowledge graph

MemoryMesh_update_npc

Update an existing npc in the knowledge graph

MemoryMesh_delete_npc

Delete an existing npc from the knowledge graph

MemoryMesh_add_player_character

Add a new Player Character to the knowledge graph

MemoryMesh_add_quest

Add a new Quest to the knowledge graph

MemoryMesh_update_quest

Update an existing quest in the knowledge graph

MemoryMesh_delete_quest

Delete an existing quest from the knowledge graph

MemoryMesh_add_skills

Defines list of skills or abilities a character can possess.

MemoryMesh_add_transportation

Represents a transportation owned or used by a character or entity.

MemoryMesh_update_transportation

Update an existing transportation in the knowledge graph

MemoryMesh_delete_transportation

Delete an existing transportation from the knowledge graph

Knowledge Graph Memory Server_create_entities

Create multiple new entities in the knowledge graph

Knowledge Graph Memory Server_create_relations

Create multiple new relations between entities in the knowledge graph. Relations should be in active voice

Knowledge Graph Memory Server_add_observations

Add new observations to existing entities in the knowledge graph

Knowledge Graph Memory Server_delete_entities

Delete multiple entities and their associated relations from the knowledge graph

Knowledge Graph Memory Server_delete_observations

Delete specific observations from entities in the knowledge graph

Knowledge Graph Memory Server_delete_relations

Delete multiple relations from the knowledge graph

Knowledge Graph Memory Server_read_graph

Read the entire knowledge graph

Knowledge Graph Memory Server_search_nodes

Search for nodes in the knowledge graph based on a query

Knowledge Graph Memory Server_open_nodes

Open specific nodes in the knowledge graph by their names

Coinmarket_get_currency_listings

Get latest cryptocurrency listings

Coinmarket_get_quotes

Get cryptocurrency quotes

docker-mcp_create-container

Create a new standalone Docker container

docker-mcp_deploy-compose

Deploy a Docker Compose stack

docker-mcp_get-logs

Retrieve the latest logs for a specified Docker container

docker-mcp_list-containers

List all Docker containers

mcp-server-duckdb_read-query

Execute a SELECT query on the DuckDB database

mcp-server-duckdb_list-tables

List all tables in the DuckDB database

mcp-server-duckdb_describe-table

Get the schema information for a specific table

mcp-server-duckdb_write-query

Execute an INSERT, UPDATE, or DELETE query on the DuckDB database

mcp-server-duckdb_create-table

Create a new table in the DuckDB database

Supabase MCP Server_list_organizations

List all organizations

Supabase MCP Server_get_organization

Get details of a specific organization

Supabase MCP Server_create_organization

Create a new organization

Supabase MCP Server_list_projects

List all Supabase projects

Supabase MCP Server_create_project

Create a new Supabase project

Supabase MCP Server_get_project

Get details of a specific Supabase project

Supabase MCP Server_delete_project

Delete a Supabase project

Supabase MCP Server_get_project_api_keys

Get API keys for a specific Supabase project

SQLite MCP Server_append_insight

Add a business insight to the memo

SQLite MCP Server_describe_table

Get the schema information for a specific table

SQLite MCP Server_read_query

Execute a SELECT query on the SQLite database

SQLite MCP Server_write_query

Execute an INSERT, UPDATE, or DELETE query on the SQLite database

SQLite MCP Server_create_table

Create a new table in the SQLite database

SQLite MCP Server_list_tables

List all tables in the SQLite database

PostgreSQL_query

Run a read-only SQL query

MySQL MCP Server_execute_sql

Execute an SQL query on the MySQL server

BigQuery MCP Server_query

Run a read-only BigQuery SQL query

Slack MCP Server_slack_list_channels

List public channels in the workspace with pagination

Slack MCP Server_slack_post_message

Post a new message to a Slack channel

Slack MCP Server_slack_reply_to_thread

Reply to a specific message thread in Slack

Slack MCP Server_slack_add_reaction

Add a reaction emoji to a message

Slack MCP Server_slack_get_channel_history

Get recent messages from a channel

Slack MCP Server_slack_get_thread_replies

Get all replies in a message thread

Slack MCP Server_slack_get_users

Get a list of all users in the workspace with their basic profile information

Slack MCP Server_slack_get_user_profile

Get detailed profile information for a specific user

mcp-server-youtube-transcript_get_transcript

Extract transcript from a YouTube video URL or ID

MCP-Server-Playwright_browser_navigate

Navigate to a URL

MCP-Server-Playwright_browser_screenshot

Take a screenshot of the current page or a specific element

MCP-Server-Playwright_browser_click

Click an element on the page using CSS selector

MCP-Server-Playwright_browser_click_text

Click an element on the page by its text content

MCP-Server-Playwright_browser_fill

Fill out an input field

MCP-Server-Playwright_browser_select

Select an element on the page with Select tag using CSS selector

MCP-Server-Playwright_browser_select_text

Select an element on the page with Select tag by its text content

MCP-Server-Playwright_browser_hover

Hover an element on the page using CSS selector

MCP-Server-Playwright_browser_hover_text

Hover an element on the page by its text content

MCP-Server-Playwright_browser_evaluate

Execute JavaScript in the browser console

mcp-server-rag-web-browser_search

Search phrase or a URL at Google and return crawled web pages as text or Markdown

mcp-server-qdrant_qdrant-store-memory

Keep the memory for later use, when you are asked to remember something.

mcp-server-qdrant_qdrant-find-memories

Look up memories in Qdrant. Use this tool when you need to:

  • Find memories by their content
  • Access memories for further analysis
  • Get some personal information about the user
mcp-simple-pubmed_search_pubmed

Search PubMed for medical and life sciences research articles.

You can use these search features:

  • Simple keyword search: "covid vaccine"
  • Field-specific search:
    • Title search: [Title]
    • Author search: [Author]
    • MeSH terms: [MeSH Terms]
    • Journal: [Journal]
  • Date ranges: Add year or date range like "2020:2024[Date - Publication]"
  • Combine terms with AND, OR, NOT
  • Use quotation marks for exact phrases

Examples:

  • "covid vaccine" - basic search
  • "breast cancer"[Title] AND "2023"[Date - Publication]
  • "Smith J"[Author] AND "diabetes"
  • "RNA"[MeSH Terms] AND "therapy"

The search will return:

  • Paper titles
  • Authors
  • Publication details
  • Abstract preview (when available)
  • Links to full text (when available)
  • DOI when available
  • Keywords and MeSH terms

Note: Use quotes around multi-word terms for best results.

mcp-simple-pubmed_get_paper_fulltext

Get full text of a PubMed article using its ID.

This tool attempts to retrieve the complete text of the paper if available through PubMed Central. If the paper is not available in PMC, it will return a message explaining why and provide information about where the text might be available (e.g., through DOI). Example usage: get_paper_fulltext(pmid="39661433") Returns: - If successful: The complete text of the paper - If not available: A clear message explaining why (e.g., "not in PMC", "requires journal access")
mcp-snyk_scan_repository

Scan a repository for security vulnerabilities using Snyk

mcp-snyk_scan_project

Scan an existing Snyk project

mcp-server-tmdb_search_movies

Search for movies by title or keywords

mcp-server-tmdb_get_recommendations

Get movie recommendations based on a movie ID

mcp-server-tmdb_get_trending

Get trending movies for a time window

cmd-mcp-server_execute_command

Execute a command and return its output. Commands run in a persistent shell session by default. Use newSession: true to run in a new shell instance.

cmd-mcp-server_execute_ssh_command

Execute a command on a remote server via SSH. Commands run in a persistent SSH session by default. Use newSession: true to run in a new session.

mcp-knowledge-graph_create_entities

Create multiple new entities in the knowledge graph

mcp-knowledge-graph_create_relations

Create multiple new relations between entities in the knowledge graph. Relations should be in active voice

mcp-knowledge-graph_add_observations

Add new observations to existing entities in the knowledge graph

mcp-knowledge-graph_delete_entities

Delete multiple entities and their associated relations from the knowledge graph

mcp-knowledge-graph_delete_observations

Delete specific observations from entities in the knowledge graph

mcp-knowledge-graph_delete_relations

Delete multiple relations from the knowledge graph

mcp-knowledge-graph_read_graph

Read the entire knowledge graph

mcp-knowledge-graph_search_nodes

Search for nodes in the knowledge graph based on a query

mcp-knowledge-graph_open_nodes

Open specific nodes in the knowledge graph by their names

salesforce-mcp-server_query

Execute a SOQL query on Salesforce

salesforce-mcp-server_tooling-query

Execute a query against the Salesforce Tooling API

salesforce-mcp-server_describe-object

Get detailed metadata about a Salesforce object

salesforce-mcp-server_metadata-retrieve

Retrieve metadata components from Salesforce

mcp-server-data-exploration_load_csv

Load CSV File Tool

Purpose: Load a local CSV file into a DataFrame.

Usage Notes: If a df_name is not provided, the tool will automatically assign names sequentially as df_1, df_2, and so on.

mcp-server-data-exploration_run_script

Python Script Execution Tool

Purpose: Execute Python scripts for specific data analytics tasks.

Allowed Actions 1. Print Results: Output will be displayed as the scripts stdout. 2. [Optional] Save DataFrames: Store DataFrames in memory for future use by specifying a save_to_memory name.

Prohibited Actions 1. Overwriting Original DataFrames: Do not modify existing DataFrames to preserve their integrity for future tasks. 2. Creating Charts: Chart generation is not permitted.

llm-context_lc-project-context

IMPORTANT: First check if project context is already available in the conversation before making any new requests. Use lc-get-files for retrieving specific files, and only use this tool when a broad repository overview is needed.

Generates a structured repository overview including: 1) Directory tree with file status ( full, outline, excluded) 2) Complete contents of key files 3) Smart outlines highlighting important definitions in supported languages. The output is customizable via profiles that control file inclusion rules and presentation format. The assistant tracks previously retrieved project context in the conversation and checks this history before making new requests.

llm-context_lc-get-files

IMPORTANT: Check previously retrieved file contents before making new requests. Retrieves (read-only) complete contents of specified files from the project. For this project, this is the preferred method for all file content analysis and text searches - simply retrieve the relevant files and examine their contents. The assistant cannot modify files with this tool - it only reads their contents.

llm-context_lc-list-modified-files

IMPORTANT: First get the generation timestamp from the project context. Returns a list of paths to files that have been modified since a given timestamp. This is typically used to track which files have changed during the conversation. After getting the list, use lc-get-files to examine the contents of any modified files of interest.

mcp-hfspace_available-files

A list of available file and resources. If the User requests things like 'most recent image' or 'the audio' use this tool to identify the intended resource.This tool returns 'resource uri', 'name', 'size', 'last modified' and 'mime type' in a markdown table

mcp-hfspace_FLUX_1-schnell-infer

Call the FLUX.1-schnell endpoint /infer

e2b-mcp-server_run_code

Run python code in a secure sandbox by E2B. Using the Jupyter Notebook syntax.

coincap-mcp_bitcoin_price

Get realtime bitcoin price

coincap-mcp_get_crypto_price

Get realtime crypto price on crypto

coincap-mcp_list_assets

Get all available crypto assets

cli-mcp-server_run_command

Allows command (CLI) execution in the directory: /app

Available commands: pwd, cat, echo, find, ls, grep Available flags: -l, -h, --help, -v, -a, -r

Note: Shell operators (&&, |, >, >>) are not supported.

cli-mcp-server_show_security_rules

Show what commands and operations are allowed in this environment.

mcp-server-kubernetes_list_pods

List pods in a namespace

mcp-server-kubernetes_list_deployments

List deployments in a namespace

mcp-server-kubernetes_list_services

List services in a namespace

mcp-server-kubernetes_list_namespaces

List all namespaces

mcp-server-kubernetes_create_pod

Create a new Kubernetes pod

mcp-server-kubernetes_create_deployment

Create a new Kubernetes deployment

mcp-server-kubernetes_delete_pod

Delete a Kubernetes pod

mcp-server-kubernetes_describe_pod

Describe a Kubernetes pod (read details like status, containers, etc.)

mcp-server-kubernetes_cleanup

Cleanup all managed resources

openrpc-mpc-server_rpc_call

Call any JSON-RPC method on a server with parameters. A user would prompt: Call method <method> on <server url> with params <params>

openrpc-mpc-server_rpc_discover

This uses JSON-RPC to call rpc.discover which is part of the OpenRPC Specification for discovery for JSON-RPC servers. A user would prompt: What JSON-RPC methods does this server have? <server url>

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SecretiveShell/MCP-allthetools'

If you have feedback or need assistance with the MCP directory API, please join our Discord server